Circle Spirograph using python

 Amazing Circle Spirograph  using python 🤩



Example


# Need to install package called turtle
# This is the source code down below

import turtle
turtle.bgcolor("black")
turtle.pensize(2)
turtle.speed(0)

for i in range(6):
    for colors in ['red', 'magenta', 'blue',    'cyan', 'green', 'white']:
        turtle.color(colors)
        turtle.circle(100)
        turtle.left(10)
turtle.hideturtle()












Previous
Next Post »

3 Comments

Click here for Comments
Radhika
admin
27 July 2020 at 22:28 ×

I did this by copy and pasting on my pc and it's worked
great article

Reply
avatar