turtle is a pre installed library in Python that enables us to create pictures and shapes by providing them with a virtual canvas. The onscreen pen that we use to draw is called turtle.
Use applications like Python IDLE or Jupyter Notebook.
Ensure you have version 3 of Python.
With the turtle library of Python, we can draw several shapes and figures. Here's two samples we can create with turtles's library.
This is a simple figure we can create to understand basics of turtle graphics.
In this, we will draw circles and squares in continuation. Everytime we will change the radius of circle and side dimension of square to make it look like a expanding squares and circles.
In this, we will draw polygons (from triangles to decagons)in a continuous fashion.
In this, we will draw a dashed line.
In this , we will draw a spirograph.
In this , we will draw a square.
In this , we will make a model of the famous Hirst spot painting.
In this, we will generate a random walk using random colors.
In this, we will generate a random walk using given colors.