2012-02-09 87 views

回答

11
>>> v="This is a string" 

>>> v.split() 
['This', 'is', 'a', 'string'] 

只使用split()

3

它不會添加空格作爲元素,如果你只是用.split(),而不是.split(' ')

>>> "This  is a  string".split() 
['This', 'is', 'a', 'string'] 
2

the docs說,不傳遞參數。

>>> "This is a string".split() 
['This', 'is', 'a', 'string'] 
相關問題