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】)