編程實現
流程:文件遍歷-除去空白——判斷字典中有無該字符——有則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