Pookkalam by Minshad

Code

x, y = 0, 0
r = 148
n = 30

# the difference in the radius of two consequetive circles
step = r/n

# we start with drawing the outer circle first and then keep on drawing
# the next smaller circle and  so on
for i in range(n):
    if i % 2 == 0 :
        c = circle(x=x, y=y, r=r,fill="#fcfc03",stroke="#fcce03",stroke_width=4)
    else:
        c = circle(x=x, y=y, r=r,fill="#fcb103",stroke="#fc6b03",stroke_width=1)
    show(c)
    r = r-step