python文字 單獨處理每個字元的方法彙總

2022-01-31 02:29:14 字數 945 閱讀 1548

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利用dict統計每個文字的出現次數

在乙個群裡看到有個群友有個需求 有八門課的名單,每行名單為每門課的名單,想統計每個人選課的次數 資料形式如下 思路 讀取所有名單,利用set集合建立不重複的list,然後建立字典,再利用字典的key對名單進行遍歷 知識點 coding utf 8 author fff zrx filepath te...

python 文字 大寫 python 文字處理

話不多說,擼起來。python大小寫字元互換 在進行大小寫互換時,常用到的方法有4種,upper lower capitalize 和title str www.datacastle.com print str.upper 把所有字元中的小寫字母轉換成大寫字母print str.lower 把所有字...

python 計算文字中每個單詞的出現頻率

計算文字中每個單詞的使用頻率,並從高到低進行排序 from string import punctuation 開啟資料匯入 text open text.txt def count text dic dict 建立新字典 for line in text word line.split 將字串分割...