库的安装
pip install wordcloud
安装会有些慢。从国外资源站下载的。耐心等待
词云体验-英文版
import wordcloud
txt = 'live is short i use python'
wc = wordcloud.WordCloud()
wc.generate(txt)
wc.to_file('test.png')
词云中文版
》中文会出错
import wordcloud
txt = '人生苦短,我用python'
wc = wordcloud.WordCloud()
wc.generate(txt)
wc.to_file('test.png')
》指定字体
import wordcloud
font_path = r'C:\Windows\Fonts\simhei.ttf'
txt = '人生 苦短,我用 python'
wc = wordcloud.WordCloud(font_path=font_path)
wc.generate(txt)
wc.to_file('test.png')