# 对词云对象进行设置
w = wordcloud.WordCloud(width=1000,
height=700,
background_color='white',
font_path='msyh.ttc',
mask=mk,
scale=15
# 读取文本并分词
f = open('武汉.txt',encoding='utf-8')
txt = f.read()
txt_list = jieba.lcut(txt)
string = " ".join(txt_list)
# 将文本放入到词云中
w.generate(string)
# 绘制词云图,并保存在图片文件中
w.to_file('wuhan.png')
生成词云图如下:
祝一切会好
- END -
李
读书、观影
分享生活的碎片
有理想的人不会伤心