利用jieba库和imaeio库生成《三国演义》词云
#CloudSanGuo.py
import jieba
import wordcloud
from imageio import imread
mask = imread("fan.png")
f = open("threekingdoms.txt", "r", encoding = "utf-8")
t = f.read()
f.close()
ls = jieba.lcut(t)
txt = " ".join(ls)
w = wordcloud.WordCloud( font_path= "msyh.ttc", mask = mask, width = 1000, height = 700, background_color = "white")
w.generate(txt)
w.to_file("threekingdoms.png")
结果