Pookkalam by Muhammed Sajal

Code

c1 = Circle(radius=50,fill="#FF00FF",stroke="cyan")
c4 = Circle(radius=25,fill="cyan")
c2 = Circle(radius=100,fill="#800080",stroke="blue")
c3 = Circle(radius=150,fill="red")
r1= rectangle(w=200,h=200,fill="orange",stroke="blue")|repeat(10, rotate(15)|scale(1))
r2 = rectangle(w=20,h=20)|repeat (8,rotate(30))
show(c3,r1,c2,c1,c4,r2,)
petal = ellipse(x=0,y=10,w=10,h=20,fill="pink")
flower= petal | repeat(12,rotate(30))
flower_link = flower | translate(x=30,y=30) | repeat (8,rotate(45))
e1 = flower_link | repeat(3,scale(1.5))
show(e1)