064中文词频统计
Posted 陌上寻
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了064中文词频统计相关的知识,希望对你有一定的参考价值。
import jieba
fr = open(‘tridebody.txt‘,‘r‘,encoding = ‘utf-8‘)
str = fr.read()
fr.close()
words = jieba.cut(str)
words = list(words)
print(‘{0:-^50)‘.format(‘分词解析成功!‘))
di = 0;
dise = set(words)
print(‘分词统计中------‘)
for i in dise:
print(i)
di[i] =words.count(i)
wc = list(di.items())
#print(wc)
wc.sort(key= lambda x:x[i],reverse = True)
#print(wc)
print(‘{0:-^50}‘.format(‘词频统计结果前10‘))
for i in range(len(dise)):
print(‘{0} = {1}‘.format(wc[i][0].wc[i][1]))
以上是关于064中文词频统计的主要内容,如果未能解决你的问题,请参考以下文章