diff --git a/附加题.py b/附加题.py new file mode 100644 index 0000000..ddb90c3 --- /dev/null +++ b/附加题.py @@ -0,0 +1,28 @@ +import requests +import re +import jieba +import wordcloud +import imageio + + +img = imageio.imread('a.png') +f = open('附加.txt', encoding='utf-8') +text = f.read() +print(text) + +text_list = jieba.lcut(text) +print(text_list) + +text_str = ' '.join(text_list) +print(text_str) + +wc = wordcloud.WordCloud( + width = 500, + height = 500, + background_color = 'white', + mask = img, + # stopwords={'疑似',}, + font_path = 'msyh.ttc' +) +wc.generate(text_str) +wc.to_file('词云.png')