mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-02-12 19:38:10 +00:00
6 lines
424 B
Markdown
6 lines
424 B
Markdown
# Turtle Graphics
|
|
|
|
The turtle module provides an environment in which turtles move around on a 2-dimensional grid. Turtles have a position, heading (the direction the turtle is facing) and a variety of possible states (turtles can draw lines of a particular colour when they move or leave no trace) and actions (turn left or right; move forward or backward.
|
|
|
|
We can create amazing graphics using turtle and colorsys module.
|