Загрузка данных


from turtle import *

speed(0)

def polygon(d, n):
    for i in range(n):
        fd(d)
        rt(360/n)

color("brown")
penup()
goto(-15, -200)
pendown()
lt(90)
begin_fill()
polygon(30, 4)
end_fill()
rt(90)

color("green")
penup()
goto(-90, -120)
pendown()
begin_fill()
goto(0, -20)
goto(90, -120)
goto(-90, -120)
end_fill()

penup()
goto(-70, -70)
pendown()
begin_fill()
goto(0, 20)
goto(70, -70)
goto(-70, -70)
end_fill()

penup()
goto(-50, -20)
pendown()
begin_fill()
goto(0, 60)
goto(50, -20)
goto(-50, -20)
end_fill()

hideturtle()
done()