Python Program to Draw Square Spiral Using Turtle
import turtle
squary = turtle.Turtle()
squary.speed(10)
for i in range(500): # this "for" loop will repeat these functions 500 times
squary.forward(i)
squary.left(91)
Output:
About The Author
I have more than 6 years of experience in the IT industry, and I have built a solid foundation in the creation and upkeep of online applications. I have constantly shown strong work ethics, self-motivation, and an aptitude for learning quickly throughout my career.