From af93adecb90ca164dd5003cc58893478d8f6e284 Mon Sep 17 00:00:00 2001 From: Bob478 <36203418+Bob478@users.noreply.github.com> Date: Sun, 7 Oct 2018 17:04:26 +0100 Subject: [PATCH] Add python hello world (#63) * Super simple script with format Created super simple python script to say hello world * Simple python script python 2.7.15 Amended file to python doc * Super simple print using format (#34) Added # of issue --- Python/simpleformat.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 Python/simpleformat.py diff --git a/Python/simpleformat.py b/Python/simpleformat.py new file mode 100644 index 0000000..a1b5140 --- /dev/null +++ b/Python/simpleformat.py @@ -0,0 +1 @@ +print 'Please print: {}'.format('Hello World')