Answer
>>> import turtle
>>> turtle.goto(x, y)
Work Step by Step
When the Turtle program starts, the arrowhead is at the center of the Python Turtle Graphics window at the coordinates (0, 0).
You can also use the goto(x, y) command to move the turtle to any specified point (x, y).
>>> import turtle
>>> turtle.goto(x, y)
x,y are the coordinates on the screen.
Coordinates are actually the collection of thousands of pixels in a screen boundary.