综合练习:词频统计

Posted l_orz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了综合练习:词频统计相关的知识,希望对你有一定的参考价值。

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

  

       

 

以上是关于综合练习:词频统计的主要内容,如果未能解决你的问题,请参考以下文章

综合练习:词频统计

综合练习:词频统计

综合练习:英文词频统计

综合练习:英文词频统计

综合练习:词频统计

综合练习:英文词频统计