--- title: Python Turtle tags: packages notes: --- Python Turtle is a easy using and interesting packages, with codes on ipykernel: `!pip install PythonTurtle` And you only execute below codes, and can get the result. ```python= from turtle import * for steps in range(100): for c in ('blue', 'red', 'green'): color(c) forward(steps) right(30) ``` ![](https://hackmd.io/_uploads/BkxqdhBP02.png =500x) The shortage is that your computer crashed. Other Resource: https://docs.python.org/3/library/turtle.html