code 👇
import turtle
import colorsys
t = turtle.Turtle()
t.speed(0)
turtle.bgcolor('black')
h = 0
for i in range(70):
c = colorsys.hsv_to_rgb(h,1,1)
t.color(c)
t.begin_fill()
t.circle(i,216)
t.circle(i,-144)
t.right(100)
h += 0.006
t.end_fill()
turtle.done()
Join Us:
Subscribe to our channel for more ASMR coding videos, tutorials, and creative projects. Hit the notification bell so you never miss an update!
Connect with Us:
Follow us on
/ chetan_raut_20
/ sortedcoding
Don't forget to like, comment, and share this video with fellow coding enthusiasts. Let's create beautiful graphics together!