1. 程式人生 > >python文本 單獨處理每個字符的方法匯總

python文本 單獨處理每個字符的方法匯總

其他 pri gin att bcd one ima post space

python文本 單獨處理字符串每個字符的方法匯總

場景:

用每次處理一個字符的方式處理字符串

方法:

1.使用liststr

>>> 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文本 單獨處理每個字符的方法匯總