python3.3中 如何把一个str转换成list呢?

2024-12-21 16:56:08
推荐回答(4个)
回答1:

意思是不要空格吗?

那就

list(my_str.replace(" ", ""))

要空格的话就直接

list(my_str)

回答2:

>>> a = 'hello world'
>>> b = list(a)
>>> b
['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
>>>

回答3:

list(str)

回答4:

x='hello'
y=[]
y.append(x)
则y的值为['hello']
不知道是不是你想要的结果