Python - 如何使龟移动到(x,y)位置而不移动屏幕?

时间:2017-11-13 04:30:48

标签: python coordinates turtle-graphics

我想知道如何让Turtle转到(x,y)坐标,而不会让它在屏幕上移动。我尝试了.goto().setposition()方法,但它们都让乌龟在屏幕上移动。我该怎么做?

1 个答案:

答案 0 :(得分:1)

你可以使用笔,然后将龟设置为隐形,然后使用goto将乌龟移动到你的位置。

turtle.up()
turtle.ht()
turtle.goto(x, y)

# reshow the turtle
turtle.st()
turtle.down()