📜  python 将字符串转换为单词列表 - Python 代码示例
📅  最后修改于: 2022-03-11 14:45:44.566000             🧑  作者: Mango
代码示例1
>>> "Please split this string".split()
['Please', 'split', 'this', 'string']