Move turtle without drawing (penup, pendown, goto)


Coordinates (0, 0) are in the middle of the screen.

examples/turtle/two_circles.py
import turtle

trt = turtle.getturtle()
trt.circle(30)
trt.penup()
trt.goto(200, 0)
trt.pendown()
trt.circle(50)

turtle.exitonclick()