22 lines
579 B
Python
22 lines
579 B
Python
'''
|
|
message = input("Tell me something, and I will repeat it back to you: ")
|
|
print(message)
|
|
|
|
prompt = "\nTell me somethong, and I will repeat it back to you: "
|
|
prompt += "\nENTER 'quit' to end the program: "
|
|
message = ""
|
|
while message != "quit":
|
|
message = input(prompt)
|
|
if message != "quit":
|
|
print(message)
|
|
'''
|
|
|
|
prompt = "\nTell me somethong, and I will repeat it back to you: "
|
|
prompt += "\nENTER 'quit' to end the program: "
|
|
active = True
|
|
while active:
|
|
message =input(prompt)
|
|
if message == "quit":
|
|
active = False
|
|
else:
|
|
print(message) |