文件方式實現完整的英文詞頻統計實例

1.讀入待分析的字符串 2.分解提取單詞  3.計數字典 4.排除語法型詞彙 5.排序 6.輸出TOP(20)   fo=open('test.txt','r') a=fo.read() fo.close() exc={'the','a','to','of','and','in','that','on',''} a=a.lower() for i in '.,': a=a.replace(i,'
相關文章
相關標籤/搜索