首页 > 其他 > 详细

综合练习:词频统计

时间:2018-03-27 17:58:53      阅读:160      评论:0      收藏:0      [点我收藏+]
f = open(‘test.txt‘,‘r‘)
news = f.read()
f.close()

sep = ‘‘‘.,‘?!:"‘‘‘
exclude = {‘the‘,‘and‘,‘to‘,‘a‘,‘of‘,‘was‘,‘on‘,‘with‘,‘i‘,‘s‘,‘is‘,‘were‘,‘that‘,‘back‘,‘at‘,‘little‘,‘have‘}
for w in sep:
    news = news.replace(w,‘ ‘)

wordList = news.lower().split()
wordDict = {}
‘‘‘
for v in wordList:
    wordDict[v] = wordDict.get(v, 0)+1
for v in exclude
    del( wordDict[v])
‘‘‘

wordset = set(wordList) - exclude
for v in wordset:
    wordDict[v] = wordList.count(v)

dictList = list(wordDict.items())
dictList.sort(key=lambda x:x[1],reverse=True)
for i in range(20):
    print(dictList[i])

f = open(‘newscount.txt‘,‘a‘)
for i in range(25):
    f.write(dictList[i][0]+‘ ‘+str(dictList[i][1])+‘\n‘)

运行结果:

 

 

技术分享图片

综合练习:词频统计

原文:https://www.cnblogs.com/cgq520/p/8658573.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!