JuseongJIN

funtion: if input in 'exit', program exit

1 +while (1):
2 + txt = input("출력하고 싶은 말을 적어보세요!\n")
3 + if txt == "exit":
4 + print("종료")
5 + break
6 + else :
7 + print(txt + "\n")
...\ No newline at end of file ...\ No newline at end of file