摘要: import jieba news = open('bignews.txt','r').read() news_cut = jieba.lcut(news) dict = {} for i in set(news_cut): dict[i]=news_cut.count(i) delete={'的' 阅读全文
posted @ 2018-03-28 15:57 157-符致伟 阅读(67) 评论(0) 推荐(0) 编辑