I want the GIF to play in the turtle screen.
(我希望GIF在乌龟屏幕中播放。)
But it is showing only the still image. (但它只显示静止图像。)
Please fix this, Any help will be appreciated... (请解决此问题,任何帮助将不胜感激...)
Here is my code:
(这是我的代码:)
import turtle
import os
# resources :
bgpic = r"C:UsersintelDesktopxBDT7.gif"
win = turtle.Screen()
win.addshape(bgpic)
sh = turtle.Turtle()
sh.shape(bgpic)
# Shuting the window down :
turtle.mainloop()
ask by Andrew whiteman translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…