import turtle
def mygoto(x, y):
turtle.up()
turtle.goto(x,y)
turtle.down()
def drawBigStar(x):
turtle.begin_fill()
for i in range(5):
turtle.forward(x)
turtle.right(144)
turtle.end_fill()
def drawStar(x):
turtle.begin_fill()
for i in range(5):
turtle.forward(x)
turtle.left(144)
turtle.end_fill()
mygoto(-250,200)
turtle.color("red")
turtle.fillcolor("red")
turtle.begin_fill();
for i in range(2):
turtle.forward(600)
turtle.right(90)
turtle.forward(400)
turtle.right(90)
turtle.end_fill()
mygoto(-220,110)
turtle.color("yellow")
turtle.fillcolor("yellow")
turtle.begin_fill()
drawBigStar(100)
turtle.end_fill()
for i in range(4):
x=1
if i in[0,3]:
x=0
mygoto(-100+x*50,150-i*45)
turtle.left(15-i*15)
drawBigStar(30)
mygoto(0,0)
turtle.hideturtle()
turtle.done();