0

我正在尝试在我的海龟世界中插入一个 .gif 文件作为背景图像,以便单独的海龟继续旅行,但我无法让它工作。我是 python 新手,任何帮助都会很棒。

这是当前代码:

from turtle import * 
from Tkinter import *

def test():
    turtle.bgpic("warehouse1.gif")
    fd(100)
    goto(50, 100)
4

1 回答 1

2

from turtle import *使模块中的所有名称都可用,因此您可以在这种情况下turtle使用 bare :bgpic()

#!/usr/bin/env python
from turtle import *

def test():
    speed(1) # set the slowest speed to see the turtle movements
    bgpic('warehouse1.gif')
    fd(100)
    goto(50, 100)
    mainloop()

test()

注意:通常不应*在 Python 交互式 shell 之外使用通配符导入 ( )。请参阅Python 中的成语和反成语

于 2012-09-20T21:26:56.930 回答