홍진섭

add exit condition -- 20210327 1436

1 while True: 1 while True:
2 - print("\nEntered sentence : " + input("input any sentence : ") + '\n') 2 + sentence = input("input any sentence (If you enter \'exit\', the program will exit) : ")
3 + if sentence == "exit":
4 + break
5 + print("\nEntered sentence : " + sentence + '\n')
......