Code
c=circle(r=150,fill="#FF5C5C",stroke="none")
c1=circle(x=0 ,y=125 ,r=23,fill="#FF2400",stroke="none")
c2=circle(r=25,fill="violet",stroke="none")
c3=circle(r=100,fill="purple",stroke="none")
c4=circle(x=125 ,y=0 ,r=23,fill="#FF2400",stroke="none")
c5=circle(x=-125 ,y=0 ,r=23,fill="#FF2400",stroke="none")
c6=circle(x=0 ,y=-125 ,r=23,fill="#FF2400",stroke="none")
p1 = point(x=0, y=0)
p2 = point(x=100, y=0)
p3 = point(x=0, y=100)
shape = polygon([p1, p2, p3],fill="blue",stroke="none")
p1 = point(x=0, y=0)
p2 = point(x=-100, y=0)
p3 = point(x=0, y=-100)
shape1 = polygon([p1, p2, p3],fill="blue",stroke="none")
p1 = point(x=0, y=0)
p2 = point(x=-50, y=0)
p3 = point(x=0, y=50)
shape2 = polygon([p1, p2, p3],fill="blue",stroke="none")
p1 = point(x=0, y=0)
p2 = point(x=50, y=0)
p3 = point(x=0, y=-50)
shape3 = polygon([p1, p2, p3],fill="blue",stroke="none")
p1 = point(x=0, y=0)
p2 = point(x=-92, y=0)
p3 = point(x=0, y=92)
shape4 = polygon([p1, p2, p3],fill="skyblue",stroke="none")
p1 = point(x=0, y=0)
p2 = point(x=92, y=0)
p3 = point(x=0, y=-92)
shape5 = polygon([p1, p2, p3],fill="skyblue",stroke="none")
p1 = point(x=0, y=0)
p2 = point(x=0, y=58)
p3 = point(x=58, y=0)
shape6 = polygon([p1, p2, p3],fill="skyblue",stroke="none")
p1 = point(x=0, y=0)
p2 = point(x=-58, y=0)
p3 = point(x=0, y=-58)
shape7 = polygon([p1, p2, p3],fill="skyblue",stroke="none")
show(c,c3,c1,c4,c5,c6,shape,shape1,shape4,shape2,shape5,shape3,shape6,shape7,c2)