Pookkalam by Fathima Nazneen

Code

def dot(x, y):
    c = circle (x=x, y=y,r=25,fill="gold",stroke="none")
    return c
d1 = dot(x=0,y=0)
show (d1)
c1 = circle (x=25,y=25,r=30,fill="orange",stroke="none")
c2 = circle (x=25,y=-25,r=30,fill="orange",stroke="none")
c3 = circle (x=-25,y=-25,r=30,fill="orange",stroke="none")
c4 = circle (x=-25,y=25,r=30,fill="orange",stroke="none")
show (c1,c2,c3,c4)
c= circle(r=50, fill="maroon")
show = (c)
s1 = rectangle(w=200,h=200) | repeat(9, rotate(10))
show = (s1)