이세진

exit function

Showing 1 changed file with 11 additions and 1 deletions
def exit(word):
if word == "exit":
isTrue = False
return isTrue
else:
return True
def echo():
while(True):
isTrue = True
while isTrue:
word = input("Enter the word: ")
isTrue = exit(word)
print(word)
return
......