jieba:西游记

Posted yuming1104

tags:

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

import  jieba

txt = open("D:\\西游记.txt", "r", encoding=utf-8).read()
words = jieba.lcut(txt)     # 使用精确模式对文本进行分词
counts = {}     # 通过键值对的形式存储词语及其出现的次数


for word in words:
    if  len(word) == 1:    # 单个词语不计算在内
        continue
    else:
        counts[word] = counts.get(word, 0) + 1    # 遍历所有词语,每出现一次其对应的值加 1
        
items = list(counts.items())#将键值对转换成列表
items.sort(key=lambda x: x[1], reverse=True)    # 根据词语出现的次数进行从大到小排序

for i in range(20):
    word, count = items[i]
    print("{0:<5}{1:>5}".format(word, count))

技术图片

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

西游记 词频统计

中文词频统计

西游记相关的分词,出现次数最高的20个

对采集的游记进行数据分析

中文词频统计

异步爬虫圆我四大名著《西游记》之梦