Pookkalam by Ananya P

Code

c = circle(x=0,y=0,r=150,fill="orange",stroke="black",stroke_width=5)
c1 = circle(x=0,y=0,r=100,fill="blue")
c2 = circle(x=0,y=0,r=71,fill="purple")
c3 = ellipse(x=0,y=0,w=300,h=100,fill="red",stroke="green",stroke_width=3) | repeat(50, rotate(25))
z1 = point(x=0,y=100)
z2 = point(x=-100,y=0)
z3 = point(x=0,y=-100)
z4 = point(x=100,y=0)
shape = polygon([z1,z2,z3,z4],fill="orange") | repeat(20, rotate(20))
c4 = ellipse(w=142,h=5,fill="yellow") | repeat(100, rotate(5))
c5 = c2 | scale(0.5)
z5 = point(x=0,y=35)
z6 = point(x=-35,y=0)
z7 = point(x=35,y=0)
c6 = polygon([z5,z6,z7],fill="black") | repeat(50, rotate(30))
c7 = circle(x=0,y=0,r=20,fill="white")
c8 = circle(x=0,y=0,r=10,fill="pink")
show(c3,c1,shape,c2,c4,c5,c6,c7,c8)