摘要: 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: dic[w] = dic.get(w,0)+1 wc = ... 阅读全文
posted @ 2017-09-29 10:36 003刘淑千 阅读(102) 评论(0) 推荐(0) 编辑