• This project
    • Loading...
  • Sign in

서원석 / OpenSourceProgramming_2018_1_Experiment4

%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
  • OpenSourceProgramming_2018_1_Experiment4
  • exit.py
  • seowonseok's avatar
    add file(exit.py) in b_one · 87ce1efe
    87ce1efe
    seowonseok authored 2018-03-30 12:45:23 +0900
exit.py 130 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8
def exit(input):
	if(input == "exit"):
		print("exit")
	else:
		print("nothing")

text =  input("please input text: ")
exit(text)