>>> a='abcdefg'>>> list(a)
['a', 'b', 'c', 'd', 'e', 'f', 'g']
>>> aList=list(a)
>>> for item in aList:
print(item)#这里可以加入其他的操作,我们这里只是单纯使用print
a
b
c
d
e
f
g
>>>
2. 使用 for 遍历字符串
>>> a='abcdefg'>>> for item in a :
print(item)#这里可以加入其他的操作,我们这里只是单纯使用print
a
b
c
d
e
f
g
>>>
3. 使用 for 解析字符串到 list 里面
>>> a='abcdefg'>>> result=[item for item in a]
>>> result
['a', 'b', 'c', 'd', 'e', 'f', 'g']
>>>
请发表评论