gpt4 book ai didi

python - 如何将图像添加到 turtle 屏幕而不会出错?

转载 作者:行者123 更新时间:2023-12-03 20:42:13 26 4
gpt4 key购买 nike

我看到其他人问过这个问题,我查了一下。但是,我仍然遇到相同的错误。 错误:“str”对象没有属性“_type” .这是我的代码:

from turtle import *
setup(600,600)
Screen()
sc = Screen()
alien = os.path.expanduser("~/Desktop/AlienGameImage.gif")
sc.register_shape(alien)
t = Turtle()
t.shape(alien)
mainloop()
我也试过:
sc.addshape(alien)

最佳答案

尝试了你的代码,我遇到了同样的错误,几乎没有改动,它对我来说非常有效:

from turtle import *
sc = Screen()
sc.setup(600,600)
alien = r"folder\giftest.gif"
sc.register_shape(alien)
t = Turtle()
t.shape(alien)
mainloop()

关于python - 如何将图像添加到 turtle 屏幕而不会出错?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66712596/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com