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.

14 lines
348 B

import jieba #结巴分词pip install jieba
import wordcloud #制作词云图
import imageio #读取本地图片,修改词云图形
f = open('D:/弹幕.txt','r',encoding='UTF-8')
lines = f.readlines()
for line in lines:
if "ai" in line:
f1=open('D:/AI.csv','a',encoding='UTF-8')
f1.write(line)
f.close()