• This project
    • Loading...
  • Sign in

김영곤 / gitbranch-assignment2

%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
  • gitbranch-assignment2
  • exit.py
  • 김영곤's avatar
    exit.py added · 2200ee05
    2200ee05 Browse Files
    김영곤 authored 2020-09-25 15:50:38 +0900
exit.py 135 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
import sys

while 1:
    a = input("Do you want to exit?(Enter'exit' to exit) : ")
    if a == 'exit':
        break
sys.exit()