红楼梦

import jieba
jieba.setLogLevel(jieba.logging.INFO)
txt = open('红楼梦.txt', 'r', encoding='gb18030').read()
words = jieba.lcut(txt)
counts = {}
for word in words:
if len(word) == 1:
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(20):
word, count = items[i]
print('{0:<10}{1:>5}'.format(word, count))

 

posted @ 2021-11-13 22:33  闪电干饭狼  阅读(46)  评论(0)    收藏  举报