W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
場(chǎng)景:
用每次處理一個(gè)字符的方式處理字符串
方法:
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']
>>>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: