Muffinlicious added the comment:
Turtle is the most accessible and well-known drawing module for kids to use so
teleporting makes more sense in the context of drawing random shapes or small
pictures around the screen. I've seen the penup/goto/pendown combo so often
that I figure
New submission from Muffinlicious :
I use turtle pretty often in a teaching setting. It's extremely common that
I'll define the following function at the top of my code:
def teleport(x, y):
turtle.penup()
turtle.setpos(x, y)
turtle.pendown()
Shouldn't this sort of