jiaba库的使用《活着》字频分析
Posted wangyingjie123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jiaba库的使用《活着》字频分析相关的知识,希望对你有一定的参考价值。
import jieba txt = open("huozhe.txt", "r", encoding="utf-8").read() words = jieba.lcut(txt) counts = {} for word in words: if len(word) == 1: continue else: rword = word counts[rword] = counts.get(rword,0) + 1 items = list(counts.items()) items.sort(key=lambda x:x[1], reverse=True) for i in range(10): word, count = items[i] print("{0:<10}{1:>5}".format(word, count))
以上是关于jiaba库的使用《活着》字频分析的主要内容,如果未能解决你的问题,请参考以下文章