摘要: import jieba txt = open("聊斋志异.txt", "r", encoding='utf-8').read() words = jieba.lcut(txt) counts = {} for word in words: if len(word) == 1: continue e 阅读全文
posted @ 2020-11-15 11:35 whispe 阅读(87) 评论(0) 推荐(0)