python文本 單獨處理每個字符的方法匯總
阿新 • • 發佈:2018-01-26
其他 pri gin att bcd one ima post space
python文本 單獨處理字符串每個字符的方法匯總
場景:
用每次處理一個字符的方式處理字符串
方法:
1.使用list(str)
>>> 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‘]
>>>
python文本 單獨處理每個字符的方法匯總