我的字符串是:如何將字符串拆分爲不包含python空格的單詞?
"This is a string"
我希望把它變成一個列表:
["This", "is", "a", "string"]
我用的是split(" ")
的方法,但它增加了空格作爲列表元素。請幫幫忙,
問候
我的字符串是:如何將字符串拆分爲不包含python空格的單詞?
"This is a string"
我希望把它變成一個列表:
["This", "is", "a", "string"]
我用的是split(" ")
的方法,但它增加了空格作爲列表元素。請幫幫忙,
問候
>>> v="This is a string"
>>> v.split()
['This', 'is', 'a', 'string']
只使用split()
。
它不會添加空格作爲元素,如果你只是用.split()
,而不是.split(' ')
>>> "This is a string".split()
['This', 'is', 'a', 'string']
像the docs說,不傳遞參數。
>>> "This is a string".split()
['This', 'is', 'a', 'string']
只是使用split() – WeaselFox 2012-02-09 07:30:10