From 07a5b0c9512d20d4d571ad95e1cbaa149c2ec141 Mon Sep 17 00:00:00 2001 From: Paginini <71335531+Paginini@users.noreply.github.com> Date: Fri, 2 Oct 2020 03:29:42 +0530 Subject: [PATCH] Update hello.py --- hello.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hello.py b/hello.py index f293296..2938c16 100644 --- a/hello.py +++ b/hello.py @@ -1,5 +1,6 @@ import sys -print("helo python world!") +import os +print("Hello Python World!") if sys.argv[1] == 'yes': print("you said yes") elif sys.argv[1] == 'no': @@ -32,6 +33,12 @@ for key in dic: print("%s->%s" % (key, dic[key])) + +# Proper simplification +print(dic) + + + for key, value in dic.items(): print("%s->%s" % (key, value))