Draw with Turtle

Python Turtle Module

Turtle Functions

bgcolor() - Set or return backgroundcolor of the TurtleScreen.

speed() - Return or set the turtle's speed.

penup() - Pull the pen up -- no drawing when moving.

pendown() - Pull the pen down -- drawing when moving.

goto(x,y) - Move turtle to an absolute position.

fillcolor(*args) - Return or set the fillcolor. Example: fillcolor('violet')

begin_fill() - Called just before drawing a shape to be filled.

end_fill() - Fill the shape drawn after the call begin_fill().

circle(radius, extent=None, steps=None) - Draw a circle with given radius. Arguments: radius -- a number | extent (optional) -- a number | steps (optional) -- an integer

More Documentation
Turtle icons created by Freepik - Flaticon