Pookkalam by Pooja Prathapkumar

Code

c1 = circle(r=150, stroke="Yellow", stroke_width=15)
x, y = 0, 0
outer_radius = 140
n = 1
step = outer_radius/n
r = step
for i in range(n):
    c = circle(x=x, y=y, r=r, fill="Green",stroke="none",)
    show(c)
    r = r+step
      
    
c2 = circle(x=10, y=-15, r=100, fill="Brown",stroke="none")
c3 = circle(x=5, y=-1, r=100, fill="Orange ", stroke="none")
c4 = circle(x=0, y=0, r=70, fill="Purple",stroke="none")
c5 = circle(x=0, y=0, r=80, fill="Yellow",stroke="White")
c6 = circle(x=50, y=-82, r=7 ,fill="Black",stroke="none")
c7 = circle(x=50, y=-80, r=7 ,fill="Black",stroke="none")
c8 = circle(x=50, y=-76, r=7, fill="Black",stroke="none")
c9 = circle(x=50, y=-74, r=9, fill="Black",stroke="none")
c10 = circle(x=0, y=0, r=50, fill="Red",stroke="White")
c11 = circle(x=0, y=0, r=30, fill="White",stroke="Green",stroke_width=5)
show(c,c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11)