exit.py 183 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import sys while(1): text = input("종료를 원하시면 exit을 입력해주세요 : ") if (text == "exit"): print("종료합니다"); sys.exit()