gzj137070928 发表于 2020-11-19 14:51:14

词云库实例1

# wordcloud库常规使用方法
# 1、配置对象参数
# 2、加载词云文本
# 3、输出词云文本
import wordcloud
w = wordcloud.WordCloud(background_color="white")
txt = "Life is short, learn the python."
w.generate(txt)
w.to_file("pwcloud.png")
页: [1]
查看完整版本: 词云库实例1