Code
2019.05.31(am): How to draw a spiral out of squares with python turtle
Today I used a Python Turtle to draw a square spiral. Below is a picture of the drawing. Yesterday I used Python for the base, because I forgot to develop Python in a virtual environment. So today I did not forget to activate the virtual environment. code
2019.05.30(am): What is turtle? How to make python turtle works in jupyter notebook
Turtle Graphics Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzig and Seymour Papert in 1966. The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses tkinter for the underlying graphics, it needs a version of Python installed with Tk …