jieba库

import jieba
txt = open("文章.txt","r",encoding='gbk',errors='replace').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(15):
    word, count = items[i]
    print ("{0:<10}{1:>5}".format(word, count))

posted @ 2020-06-22 20:30  程序小白007  阅读(122)  评论(0编辑  收藏  举报