이준성

Implement exit function

Showing 1 changed file with 6 additions and 2 deletions
1 -echo = input()
2 -print(echo)
...\ No newline at end of file ...\ No newline at end of file
1 +while 1:
2 + echo = input("입력 : ")
3 + if echo == "exit":
4 + quit()
5 +
6 + print("출력 : {}\n".format(echo))
......