Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion hello.py
Original file line number Diff line number Diff line change
@@ -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':
Expand Down Expand Up @@ -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))