python-scripts/scripts/turtle_graphics
2022-10-15 11:17:35 +05:30
..
README.md Turtle Graphics 2022-10-15 11:07:41 +05:30
requirements.txt Turtle Graphics 2022-10-15 11:17:35 +05:30
turtle_graphics.py Turtle Graphics 2022-10-15 11:07:41 +05:30

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.