用jieba统计红楼梦出场次数前十五位人物
时间: 2023-10-29 22:06:55 浏览: 99
好的,以下是使用jieba统计红楼梦出场次数前十五位人物的代码:
```python
import jieba
from collections import Counter
# 读取红楼梦文本
with open('红楼梦.txt', 'r', encoding='UTF-8') as f:
text = f.read()
# 使用jieba分词
words = jieba.cut(text)
# 统计每个词出现的次数
word_count = Counter(words)
# 获取出现次数最多的前15个词
top_words = word_count.most_common(15)
# 输出前15个词及其出现次数
for word, count in top_words:
print(word, count)
```
需要注意的是,此代码需要红楼梦文本文件在同一个目录下,并且文件名为“红楼梦.txt”。如果您的文件名不同,请将代码中的文件名修改为您所使用的文件名。
阅读全文