Python - 使用空格分隔符

时间:2018-05-13 13:06:22

标签: python string split delimiter space

我目前正在开发一个Python项目,我想知道如何使用空格分隔符拆分字符串。例如,

"I'm a test"将是["I'm", "", "a", "", "test"]。 所以,如果有人知道该怎么做,请帮助我。

祝你有个美好的一天!

1 个答案:

答案 0 :(得分:3)

尝试:

list =  'Im a test'.split()

Python默认用空格分割字符串。

输出将是:

list = ['Im','a','test']

这意味着您只需要在列表中的每个元素之间添加空格元素。

修改

temp_list=  'Im a test'.split()
list= []
for i in temp_list:
    list.append(i)
    list.append('')
list = list[:-1]