From 06dac3ea85cfcfb1c174ab295b17f295ef7a9336 Mon Sep 17 00:00:00 2001 From: pnkpw52ta <1241503069@qq.com> Date: Wed, 18 Sep 2024 23:21:03 +0800 Subject: [PATCH] ADD file via upload --- 附加题.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 附加题.py 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')