摘要: 中文词频统计 import jieba txt = open('test.txt','r',encoding='utf-8').read() words= list(jieba.cut(txt)) dic={} for w in words: if len(w)==1: continue else: 阅读全文
posted @ 2017-09-29 19:46 002邓诺斯 阅读(76) 评论(0) 推荐(0) 编辑