标签: python coordinates turtle-graphics
我想知道如何让Turtle转到(x,y)坐标,而不会让它在屏幕上移动。我尝试了.goto()和.setposition()方法,但它们都让乌龟在屏幕上移动。我该怎么做?
Turtle
.goto()
.setposition()
答案 0 :(得分:1)
你可以使用笔,然后将龟设置为隐形,然后使用goto将乌龟移动到你的位置。
turtle.up() turtle.ht() turtle.goto(x, y) # reshow the turtle turtle.st() turtle.down()