Draw Square Spiral in Python Using Turtle

(Last Updated On: 28/03/2023)

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:

Leave a Reply

Your email address will not be published. Required fields are marked *