a = "Stack" aList = list(a)
这给了我一个像这样的数组 ['S','t',a','c','k']
['S','t',a','c','k']
我想知道这个list(string)功能是如何工作的!
list(string)
python
python ×1