input_program_exit.py 164 Bytes Raw Blame History Permalink 1 2 3 4 5 6 while True: a = input("출력할 문자를 입력하세요 : ") if a == "exit": print("프로그램이 종료됩니다.") break print(a)