Colorful shapes and patterns
Beautiful spirals and flowers
Fun characters and animals
Your own creative masterpieces!
Following step-by-step instructions
Using loops to repeat actions
Making decisions with conditions
Breaking big problems into small steps
It allows us to customize the appearance of the background color or shapes drawn by the turtle by specifying colors using color names.
Movement
forward(distance) - Move forward
backward(distance) - Move backward
right(angle) - Turn right
left(angle) - Turn left
Drawing
circle(radius) - Draw circle
penup( ) - Stop drawing
pendown( ) - Start drawing
goto(x, y) - Go to position
Styling
fillcolor("red") - Change color
pensize(width) - Change pen size
speed(number) - Change speed
hideturtle( ) - Hide turtle
For more information, visit: https://docs.python.org/3/library/turtle.html.