摘要: import jieba txt = open("聊斋.txt","r",encoding='utf-8').read() words = jieba.lcut(txt) counts = {} for word in words: if len(word) == 1: continue else: 阅读全文
posted @ 2024-05-25 15:37 wykl 阅读(29) 评论(0) 推荐(0)