python分析文字報告

「已登出」發表於2020-11-15
import jieba
import wordcloud
txt=open("txt.txt",encoding="utf-8");
string=txt.read();
txt.close();
ls=jieba.lcut(string);
words=" ".join(ls);
w=wordcloud.WordCloud(font_path="msyh.ttc",\
                      max_words=15,\
                      );'''微軟雅黑字型'''
w.generate(words);
w.to_file("txt.png");

'''
jieba庫、詞雲庫
讀取資料-分隔成列表-列表轉化為字串-產生詞雲-生成圖片
'''

相關文章