Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Move turtle without drawing (penup, pendown, goto)

  • penup
  • pendown
  • goto

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

import turtle

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

turtle.exitonclick()