jieba和词云

import jieba
import wordcloud
f=open("许一人偏爱.txt","r",encoding='utf-8')
t=f.read()
f.close()
ls=jieba.lcut(t)
txt=" ".join(ls)
w=wordcloud.WordCloud(font_path="msyh.ttc",width=100,height=700,background_color="white",)
w.generate(txt)
w.to_file("grwordcloud.png")

猜你喜欢

转载自www.cnblogs.com/Lysim/p/12655494.html
今日推荐