py《背影》词云

一晚上整了这么个破玩意???

路漫漫其修远兮啊

 这是个背影。。。。

py《背影》词云_第1张图片 

这是个橘子。。。。py《背影》词云_第2张图片

import jieba
import wordcloud
from imageio import imread
mask=imread('juzi.png')
with open('beiying.txt','r',encoding='UTF-8')as file:
    text=file.read()
    words=jieba.lcut(text)   
    newtxt=' '.join(words)  
    wd=wordcloud.WordCloud(font_path="msyh.ttc",\
                           background_color='white',\
                           width=1000,\
                           height=1000,\
                           max_font_size=80,\
                           mask=mask,\
                           ).generate(newtxt)
wd.to_file('test.png')

 

 

 

你可能感兴趣的:(python)