turtle

The Python turtle module provides tools to create pictures and shapes by controlling a turtle that draws on a canvas. This module is ideal for learning programming concepts in a fun and engaging manner.

Here’s a quick example:

Python
>>> import turtle

>>> # Move the turtle forward by 100 units
>>> turtle.forward(100)

>>> # Turn the turtle right by 90 degrees
>>> turtle.right(90)

Running the code snippet above results in the following output: