當前位置:成語大全網 - 新華字典 - python用字典統計不同字符的個數

python用字典統計不同字符的個數

這裏用到了字典基本的建立,value調用,鍵值對增加,value修改,以及items()函數。

編程實現

流程:文件遍歷-除去空白——判斷字典中有無該字符——有則Value加1,無則新建為1——按Value排序並返回

具體實現代碼如下:

#統計txt文件中的字符頻率

def countwords(txt):

stat = {}#建立字典存儲存儲字符和對應頻率

for line in txt:

line = line.strip()

if len(line) == 0:

continue

for i in range(len(line)):

#判斷有無該字符的鍵

if(line[i] in stat):

stat[line[i]]+=1

else:

stat[line[i]]=1

result=sorted(stat.items(),key = lambda x:x[1],reverse = True)#按value大小排序

return result

xyj = open('xyj.txt' ,'r',encoding = 'utf-8')#讀文件

r=countwords(xyj)#調用函數

xyj.close