我让屏幕有一个画布,里面有一些图画。我还制作了一个制作乌龟并移动它的函数。问题是当海龟被创建时,它也创建了一个新的海龟在其中移动的窗口。我不想要第二个窗口。有没有办法移动乌龟并使其出现在画布上而不创建第二个窗口?
这是功能:
def Mueve_Carro(type):
color = StringVar
if tipoCarro == 1:
type = "blue"
elif tipoCarro == 2:
type = "orange"
elif tipoCarro == 3:
type = "brown"
ball = Turtle()
ball.penup()
ball.shape("circle")
ball.shapesize(1,1,1)
ball.color(type)
ball.goto(-60,22)