-----------------------------------------------------------------------------------------
Please subscribe for more of this type of videoš„ā¤ļø
import turtle
import colorsys
t = turtle.Turtle()
turtle.Screen().bgcolor("Black")
t.speed(0)
h = 0
def color_list():
global h
for i in range(360):
c = colorsys.hsv_to_rgb(h, 1, 0.8)
h += 1 / 70
t.color(c)
t.circle(180)
t.left(3)
color_list()
turtle.mainloop()
-----------------------------------------------------------------------------------------
@mizan_me