python抓数据处理

独自空忆成欢 提交于 2020-02-06 22:11:08

在这里插入图片描述

import wordcloud
file = open(r"D:\PyCharm实例\抓数据\最多收藏.txt",encoding="utf-8")
text = file.read()
wc = wordcloud.WordCloud()
wc.generate(text)
image = wc.to_image()
#stopwords = {" "}
#wc = wordcloud.WordCloud(font_path=r"D:\PyCharm实例\抓数据\STSONG.TTF",stopwords=stopwords)
wc = wordcloud.WordCloud(font_path=r"D:\PyCharm实例\抓数据\STSONG.TTF")
wc.generate(text)
image = wc.to_image()
image.show()

https://blog.csdn.net/weixin_43206161

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!