ADD file via upload

main
pff5ls68k 2 months ago
parent c60aa771b1
commit d9a8e2ca2c

@ -0,0 +1,21 @@
# 导入结巴分词模块
import jieba
# 导入词云图
import wordcloud
# 读取文件内容
f = open('弹幕.txt', encoding='utf-8')
txt = f.read()
print(txt)
string = ''.join(jieba.lcut(txt))
print(string)
wc = wordcloud.WordCloud(
width=1000,
height=1000,
background_color='white',
# 指定文字
font_path='msyh.ttc',
scale=15,
)
wc.generate(string)
wc.to_file('弹幕词云.png')
Loading…
Cancel
Save