意思是不要空格吗?
那就
list(my_str.replace(" ", ""))
要空格的话就直接
list(my_str)
>>> a = 'hello world'>>> b = list(a)>>> b['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']>>>
list(str)
x='hello'y=[]y.append(x)则y的值为['hello']不知道是不是你想要的结果