Movement
forward(distance)
Move turtle forward • alias: fd()
backward(distance)
Move turtle backward • alias: bk(), back()
right(angle)
Turn right by angle degrees • alias: rt()
left(angle)
Turn left by angle degrees • alias: lt()
goto(x, y)
Move to coordinates • alias: setpos(), setposition()
home()
Return to origin (0,0)
Pen Control
penup()
Stop drawing • alias: pu(), up()
pendown()
Start drawing • alias: pd(), down()
pensize(width)
Set pen thickness • alias: width()
color(name)
Set pen color
pencolor(name)
Set pen/outline color
Drawing
circle(radius)
Draw a circle
dot(size)
Draw a dot
stamp()
Stamp turtle shape on canvas
fillcolor(name)
Set fill color for shapes
begin_fill()
Start filling shapes
end_fill()
Stop filling shapes
Settings
speed(value)
Set animation speed (0-10)
screen.bgcolor(name)
Set canvas background color
hideturtle()
Hide the turtle cursor • alias: ht()
showturtle()
Show the turtle cursor • alias: st()
💡 Tip: Click any command to insert it at your cursor position. Press R to toggle this panel.