신동해

(update) hello.py - add exit function

Showing 1 changed file with 5 additions and 1 deletions
1 -print("Hello World") 1 +while 1:
2 + print("Hello World")
3 + if input("enter 'exit' to exit : ") == "exit":
4 + break
5 +
......