摘要: import jieba txt = open("聊斋志异白话简写版.txt", "r", encoding='utf-8').read() words = jieba.lcut(txt) counts = {} for word in words: if len(word) == 1: conti 阅读全文
posted @ 2021-12-05 10:43 罗逸凡 阅读(65) 评论(0) 推荐(0)