码迷,mamicode.com
首页 > 其他好文 > 详细

综合练习:词频统计

时间:2018-03-27 18:46:39      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:分享   lambda   div   write   item   bubuko   and   str   split   

sep=‘‘‘,.?!":‘‘‘
exclude={‘the‘,‘and‘,‘of‘,‘to‘}

for c in sep:
    news=news.replace(c,‘ ‘)
wordList=news.lower().split()

wordDict={}

wordSet=set(wordList)-exclude
for w in wordSet:
    wordDict[w]=wordList.count(w)

dictList=list(wordDict.items())
dictList.sort(key=lambda x:x[1],reverse=True)

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

  技术分享图片

       技术分享图片

 

综合练习:词频统计

标签:分享   lambda   div   write   item   bubuko   and   str   split   

原文地址:https://www.cnblogs.com/Lorz/p/8658715.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!