Pookkalam by Kavya K

Code

c1 = circle(r=150,fill="red",stroke_width=6,stroke="green")
c2 = circle(r=50,fill="blue")
c3=circle(r=75,fill="orange",stroke="violet")
c4=circle(r=100,fill="pink",stroke="violet")
c5=circle(r=125,fill="grey",stroke_width=5,stroke="blue")
c6=circle(r=15,fill="yellow")
show(c1,c5,c4,c3,c2,c6)
s1=ellipse(w=150,h=100,stroke_width=5,stroke="purple")
s2=ellipse(w=100,h=150,stroke_width=5,stroke="purple")
s3=ellipse(w=200,h=250,stroke_width=5,stroke="yellow")
s4=ellipse(w=250,h=200,stroke_width=5,stroke="yellow")
show(s4,s3,s2,s1)
r1=rectangle(w=100,h=25)
r2=rectangle(w=25,h=100)