서준혁

add exit function

Showing 1 changed file with 2 additions and 1 deletions
txt = input("Enter what you want to say >> ")
txt = input("Enter what you want to say\n(If you enter ‘exit’, the program will exit) >> ")
if(txt == "exit"): exit()
print(txt)
\ No newline at end of file
......