摘要: import jieba with open("qi.txt","r",encoding = "utf-8") as f: hua = f.read()word = jieba.cut(hua) count = {}for ci in word: if ci in count: count[ci] 阅读全文
posted @ 2023-04-20 11:50 朱阿九 阅读(20) 评论(0) 推荐(0)