摘要: import jieba from wordcloud import WordCloud import matplotlib.pyplot as plt fr=open('t.txt','r',encoding='utf-8').read() words=jieba.lcut(fr) excludes={'.....'} counts={} for word in words: if ... 阅读全文
posted @ 2017-09-25 21:37 36-林秋雁 阅读(211) 评论(0) 推荐(0) 编辑