當前位置:成語大全網 - 書法字典 - 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)

#從大到小排序

對於範圍(20)內的I:

打印(項目【I】)