• This project
    • Loading...
  • Sign in

김태영 / branch_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
  • branch_assignment2
  • echo.py
  • 김태영's avatar
    MODIFY : Enter ‘exit’, the program will exit · 85ed0cb0
    85ed0cb0
    김태영 authored 2020-09-25 14:29:19 +0900
echo.py 121 Bytes
Raw Blame History Permalink
1 2 3 4 5
while(1) : 
    echo_text = input("Please enter text : ")
    if(echo_text == "exit"):
        break
    print(echo_text)