Python案例:詞頻統計

1、提出任務

統計文本文件裏單詞出現次數。python

2、完成任務

一、建立文本文件test.txt

二、建立Python項目PythonWordCount

file = open("test.txt", "r")
words = []
for line in file:
    for word in line.replace('\n', '').split(" "):
        words.append(word)

map = {}
for word in words:
    map[word] = map[word] + 1 if word in map.keys() else 1

for key in map:
    print(key + ": " + str(map[key]))

三、運行程序,查看結果

本文分享 CSDN - howard2005。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。app

相關文章
相關標籤/搜索