|
3 | 3 | _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
|
4 | 4 | is called turtle.
|
5 | 5 |
|
6 | | -### Requirements |
7 | | -#### 1. Python Environment: |
| 6 | +## Requirements |
| 7 | +### 1. Python Environment: |
8 | 8 | Use applications like Python IDLE or Jupyter Notebook.
|
9 | | -#### 2. Python Version: |
| 9 | +### 2. Python Version: |
10 | 10 | Ensure you have version 3 of Python.
|
11 | 11 |
|
12 | 12 | With the turtle library of Python, we can draw several shapes and figures. Here's two samples we can create with turtles's library.
|
13 | 13 |
|
14 | | -### 1. Animated Robot |
| 14 | +## 1. Animated Robot |
15 | 15 | This is a simple figure we can create to understand basics of turtle graphics.
|
16 | | -<img src="Robot.png" width="350" height="250"> |
| 16 | +<img src="Robot.png" width="350" height="250" /> |
17 | 17 |
|
18 | | -### 2. Kaleido Spiral |
| 18 | +## 2. Kaleido Spiral |
19 | 19 | 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.
|
20 | | -<img src="Kaleido-spiral.png" width="350" height="250"> |
| 20 | +<img src="Kaleido-spiral.png" width="350" height="250" /> |
0 commit comments