中文词频统计
Posted 袁华生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中文词频统计相关的知识,希望对你有一定的参考价值。
import jieba
fo=open(\'text.txt\',\'r\',encoding=\'utf-8\')
t=fo.read()
fo.close()
words=jieba.cut(t)
dic={}
for w in words:
if len(w)==1:
continue
else:
dic[w]=dic.get(w,0)+1
wc = list(dic.items())
wc.sort(key=lambda x:x[1],reverse = True)
for i in range(20):
print(wc[i])
以上是关于中文词频统计的主要内容,如果未能解决你的问题,请参考以下文章