You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
file/PictureProcess.py

17 lines
481 B

# -*- coding: utf-8 -*-
import wordcloud
def Print_picture():
'''
输出词云图
'''
fb = open('Sort.txt', 'r', encoding='utf-8')
txt = fb.read()
fb.close()
w = wordcloud.WordCloud(font_path='msyhbd.ttc',
width=800,
height=500,
background_color='white')
w.generate(txt)
w.to_file('词云图.png')
print('\n=====图片创建成功!=====\n')