python-词云wordcloud-0223

库的安装

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')
发布了941 篇原创文章 · 获赞 44 · 访问量 13万+

猜你喜欢

转载自blog.csdn.net/ifubing/article/details/104482147
今日推荐