當前位置:成語大全網 - 書法字典 - Python字典鍵統計

Python字典鍵統計

#2019/12/26/18:24

def getText():

Txt=open(r'D:\問題10。txt’)。閱讀()

#打開文件

Txt=txt.lower()#將所有字母轉換為小寫。

對於ch in ',-。()':#刪除特殊符號。

Txt=txt.replace(ch," ")#用空格替換特殊符號。

返回文本

Txt=getText()#讀取文件

Words=Txt.split()#分隔。

Counts={}#創建字典

逐字逐句:

counts[word]=counts.get(word,0)+1

items=list(counts.items())

items . sort(key = lambda x:x[1],reverse=True)

#從最大到最小排序

對於範圍內的I(20):

打印(項目[i])