Print Amazing Circle Spiral using python turtle

In this tutorial, we are going to show and explain How to Print Amazing Circle Spiral using python turtle. We have added the video tutorial and the source code of the program.

So let us begin with How to Print Amazing Circle Spiral using python turtle

 

Video Tutorial: Print Amazing Circle Spiral using python turtle

 

 

Source Code: 

 

import turtle
screen = turtle.Screen()
screen. setup(500, 600, startx=0, starty=100)
t = turtle. Turtle()
turtle.bgcolor("black")
turtle.pensize(2)
turtle.speed (0)
while (True):
    for i in range(6):
        for colors in ["red", "blue", "magenta", "green","yellow", "white"]:
            turtle.color(colors)
            turtle.circle(100)
            turtle. left(10)

 

Output:

 

Print Amazing Circle Spiral using python

Leave a Reply

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