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