Design Using Python Turtle

 


Source Code

import colorsys as c
from turtle import*
# setup(800,800)
speed(200)
tracer(10)
width(2)
bgcolor("black")
goto(-25,200)
for i in range(25):
for k in range(15):
color(c.hsv_to_rgb
(k/15,i/25,1))
right(90)
circle(100-i*4,90)
left(90)
right(180)
circle(200-i*4,90)
right(180)
circle(50,24)
hideturtle()
done()

Comments

Popular posts from this blog

Design Using Python Turtle

Design Using Python Turtle