• This project
    • Loading...
  • Sign in

이세진 / echo-program

%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
  • echo-program
  • echo.py
  • 이세진's avatar
    exit function · 8c3bfc1d
    8c3bfc1d
    이세진 authored 2021-03-26 12:39:53 +0900
echo.py 273 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
def exit(word):
    if word == "exit":
        isTrue = False
        return isTrue
    else:
        return True


def echo():
    isTrue = True
    while isTrue:
        word = input("Enter the word: ")
        isTrue = exit(word)
        print(word)
    return


echo()