• This project
    • Loading...
  • Sign in

이준호 / branch_2

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • branch_2
  • A
  • exit.py
  • 이준호's avatar
    feat: 사용자가 exit외의 문자를 입력시 그대로 출력하는 기능 추가 · 798b5748
    798b5748 Browse Files
    이준호 authored 2020-09-25 13:00:43 +0900
exit.py 218 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
def exit():
    while True:
        a = input("exit 입력시 종료합니다: ")
        if a == "exit":
            print("프로그램 종료합니다.")
            return
        else:
            print(a)

exit()