jieba

Posted 1234f

tags:

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

 1 #jieba文本分析
 2 import jieba
 3 txt = open("C:/Users/86136/Documents/python文件测试/test.txt","rt",encoding="utf-8")
 4 words=jieba.lcut(txt.read())
 5 counts={}
 6 for word in words:
 7     if len(word)==1:
 8         continue
 9     else:
10         counts[word]=counts.get(word,0)+1
11 items=list(counts.items())
12 items.sort(key=lambda x:x[1],reverse=True)
13 for i in range(20):
14     word,count = items[i]
15     print("{0:<10}{1:>5}".format(word,count))
16 txt.close()

技术图片

 

以上是关于jieba的主要内容,如果未能解决你的问题,请参考以下文章

jieba库分词统计

PaceBora||Python中文分词 jieba 十五分钟入门与进阶

jieba库词频统计练习

运用jieba库 寻找高频词

Python jieba 𴱟

python安装Jieba中文分词组件并测试