python用jieba库统计三国演义中提到最多的人物

import jieba
txt = open("threekingdoms.txt", "r", encoding='utf-8').read()
names_txt = open("names of ThreeKingdoms.txt", "r", encoding='utf-8').read()
names = names_txt.split()
words = jieba.lcut(txt)
counts = {}
for word in words:
    if word not in names:
        continue
    else:
        counts[word] = counts.get(word,0) + 1
items = list(counts.items())
items.sort(key=lambda x:x[1], reverse=True)
for i in range(15):
    word, count = items[i]
    print ("{0:<10}{1:>5}".format(word, count))

threekingdoms.txt是三国演义的电子版,names of ThreeKingdoms.txt是三国演义中所有出现过的人物。

使用到jieba库。

jieba库简介

精确模式:把文本精确地切分,不存在冗余 jieba.lcut(s)

全模式:把文本中所有可能的都扫描出来 jieba.lcut(s, cut_all=True)

搜索引擎模式:精确模式基础上,对长词再次切分 jieba.lcut_for_search(s)

往jieba字典中添加新词:jieba.add_word(w)

 

最后三国演义中提到最多的人物是曹操。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值