python 词云wordcloud库的安装与使用 200309

库的安装

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')
发布了64 篇原创文章 · 获赞 1 · 访问量 801

猜你喜欢

转载自blog.csdn.net/whalecode/article/details/104743628