L6Q1
unknown
plain_text
10 months ago
176 B
18
Indexable
def run():
s = ""
while True:
w = input("Next word : ")
if w == ".":
break
s += w + " "
print(f"Sentence: {s.strip()}")Editor is loading...
Leave a Comment