from turtle import*
import colorsys as cs
bgcolor('black')
pensize(6)
tracer(100)
speed(500)
width(20)
h=0.2
for i in range(300):
for j in range(10):
c=cs.hsv_to_rgb(h,1,1)
color(c)
h+=0.3
circle(200+(i*1))
lt(80)
right(80)
done()
#python #graphics #colourful #viral #shorts