• This project
    • Loading...
  • Sign in

엄기훈 / assignment2

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • assignment2
  • echo.py
  • Gihoon Eom's avatar
    exit feature added · ab81b53e
    ab81b53e
    Gihoon Eom authored 2020-04-03 14:16:40 +0900
echo.py 120 Bytes
Raw Blame History Permalink
1 2 3 4 5
userInput = input("input: ")
if userInput.lower() == "exit":
    print("Exiting the program")
else:
    print(userInput)