@mizan_me

-----------------------------------------------------------------------------------------
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()
-----------------------------------------------------------------------------------------