Python/basics.py
2020-01-29 13:36:53 +00:00

7 lines
179 B
Python

output = ""
something = ""
while something != "\end":
something = input("Say something: ")
if something != "\end":
output = output + something + ". "
print(output)