题解 | #单词造句#
单词造句
https://www.nowcoder.com/practice/c0c7fa7523ea4651bd56b6cbc8c65c66
words = [] # 定义一个空列表来存储输入的单词 while True: word = input() # 读取一行输入 if word == "0": # 如果输入为0,则退出循环 break words.append(word) # 将输入的单词添加到列表中 sentence = " ".join(words) # 使用join函数将单词列表拼接成句子 print(sentence) # 输出句子