lab_scatter/movement.py

7 lines
80 B
Python

from turtle import *
def flyto(x, y):
penup()
goto(x, y)
pendown()