""" 词云显示在海龟画图屏幕上.py 这个程序根据文本文件的内容生成词云png图像, 然后把这幅图像加载到海龟画图屏幕中显示出来。 当然,如果不断地读取文本文件,那么可以动态显示词云,也能做成gif文件 """ import turtle from turtle import Shape from wordcloud import * # 打开文件 f = open('word.txt') c = f.read() f.close() # 根据文本生成词云对象写入文件 w = WordCloud(width=800,height=600).generate(c.lower()) w.to_file('word.png') # 获取海龟屏幕 screen = turtle.getscreen() screen.setup(800,600) screen.title('词云显示在海龟画图屏幕上by李兴球') # 新建一个形状 wordshape = Shape('image',screen._image('word.png')) screen.addshape('word',wordshape) # 把海龟设定为这个形状 turtle.shape('word') screen.mainloop()
李兴球
李兴球的博客是Python创意编程原创博客
要发表评论,您必须先登录。
发表评论