如何将字符串转换为python中的单词列表?

要在单词列表中转换字符串,只需要将其在空白处分割即可。您可以split()从字符串类使用。此方法的默认定界符为空格,即,在字符串上调用时,它将以空格字符分割该字符串。

例如

>>> "Please split this string".split()
['Please', 'split', 'this', 'string']

正则表达式也可以用于解决此问题。您可以使用正则表达式“ \ s +”作为分隔符来调用re.split()方法。请注意,此方法比上述方法慢。

>>> import re
>>> re.split('\s+', 'Please split this string')
['Please', 'split', 'this', 'string']