Код: Выделить всё
def func():
print("T POSITION: ", t.pos()) # prints 100, 100
t2.pencolor("black")
t2.setpos(0,0)
print("T POSITION: ", t.pos()) # Now, prints 0, 0
print("T2 POISTION: ", t2.pos())
Код: Выделить всё
t= turtle.getturtle()
t.setpos(100,100)
t2 = turtle.getturtle().
Подробнее здесь: https://stackoverflow.com/questions/561 ... s-position
Мобильная версия