Pookkalam by Anaswara viswanath

Code

r=rectangle(x=0,y=0,w=300,h=300,fill="peachpuff",stroke="none")
show(r)
name=("Happy onam!")
print(name)
c1 = circle(r=150,fill="red",stroke="none")
c2=circle(r=125,fill="green",stroke="none")

c3=circle(r=100,fill="yellow",stroke="none")
c4=circle(r=75,fill="#0047ab",stroke="none")
c5=circle(r=50,fill="peachpuff",stroke="Tomato",stroke_width=5)
c6=circle(r=25,fill="#FFFFFF", stroke="#CD212A",stroke_width=10)
c7=circle(x=150,y=150,r=50,fill="gold",stroke="green",stroke_width=5)
c8=circle(x=-150,y=150,r=50,fill="gold",stroke="green",stroke_width=5)
c9=circle(x=-150,y=-150,r=50,fill="gold",stroke="green",stroke_width=5)
c10=circle(x=150,y=-150,r=50,fill="gold",stroke="green",stroke_width=5)
show(c1,c2,c3,c4,c5,c6,c7,c8,c9,c10)