Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 python 中将字符串转换为单元素列表的一种方法是:my_string.split(). 但是,如果字符串有空格,这将返回一个包含多个元素的列表。从可能有也可能没有空格的字符串创建列表的有效方法是什么?
my_string.split()
刚刚怎么样
l = [my_string]
您的意思是将字符串中的每个字符拆分为列表中的一个元素吗?这个怎么样:
>>> list("mystring") ['m', 'y', 's', 't', 'r', 'i', 'n', 'g'] >>> list("my string") ['m', 'y', ' ', 's', 't', 'r', 'i', 'n', 'g']