如何将字符串拆分成列表?我希望我的Python函数拆分一个句子(输入),并将每个单词存储在一个列表中。我当前的代码可以拆分句子,但不将单词存储为列表。我该怎么做?def split_line(text):
# split the text
words = text.split()
# for each word in the line:
for word in words:
# print the word
print(words)
4 回答
拉莫斯之舞
TA贡献1820条经验 获得超10个赞
text.split()
words
words.append(word)
word.append(words)
蝴蝶刀刀
TA贡献1801条经验 获得超8个赞
text
words = text.split()
text
","
.
words = text.split(",")
list
text
幕布斯7119047
TA贡献1794条经验 获得超8个赞
返回a 单词列表在字符串中,使用SEP作为分隔符.。如果未指定SEP或None,则应用不同的拆分算法:连续空格的运行被视为单个分隔符,如果字符串具有前导或尾随空格,则结果将在开始或结束时不包含空字符串。
>>> line="a sentence with a few words">>> line.split()['a', 'sentence', 'with', 'a', 'few', 'words']>>>
添加回答
举报
0/150
提交
取消