题解 | #单词造句#
单词造句
https://www.nowcoder.com/practice/c0c7fa7523ea4651bd56b6cbc8c65c66
word_list = [] while True: s = input() if s == "0": break else: word_list.append(s) sentence = " ".join(word_list) print(sentence)
join方法:
str.join(seq)
其中str是打算使用的分隔符,该方法可将seq中所有的元素合并为一个新的字符串。
#Python学旅#