From c3720eb902a1c874ecebc75809aa81752da229c6 Mon Sep 17 00:00:00 2001 From: marcinmiksa Date: Sat, 27 Oct 2018 11:17:49 +0200 Subject: [PATCH] hello with list --- Python/helloMarcin.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Python/helloMarcin.py diff --git a/Python/helloMarcin.py b/Python/helloMarcin.py new file mode 100644 index 0000000..a929489 --- /dev/null +++ b/Python/helloMarcin.py @@ -0,0 +1,4 @@ +hello = ['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd'] + +for index in hello: + print (index, end='') \ No newline at end of file