6 lines
88 B
Python
6 lines
88 B
Python
while True:
|
|
text = input("Skriv något: ")
|
|
if (text == "klar"):
|
|
break
|
|
print (text)
|