1import turtle
2arrow=turtle.Turtle()
3arrow.color ("green")
4window=turtle.Screen()
5window.bgcolor("cyan")
6arrow.begin_fill()
7arrow.forward(100)
8arrow.setheading(120)
9arrow.forward(100)
10arrow.setheading(240)
11arrow.forward(100)
12arrow.setheading(270)
13arrow.end_fill()
14arrow.penup()
15arrow.forward(60)
16arrow.pendown()
17arrow.begin_fill()
18arrow.setheading(0)
19arrow.forward(100)
20arrow.setheading(120)
21arrow.forward(100)
22arrow.setheading(240)
23arrow.forward(100)
24arrow.setheading(270)
25arrow.end_fill()
26arrow.penup()
27arrow.setheading(0)
28arrow.forward(40)
29arrow.pendown()
30arrow.begin_fill()
31arrow.color("brown")
32arrow.setheading(270)
33arrow.forward(50)
34arrow.setheading(0)
35arrow.forward(20)
36arrow.setheading(90)
37arrow.forward(50)
38arrow.end_fill()
39arrow.penup()
40arrow.forward(150)
41arrow.setheading(180)
42arrow.forward (125)
43arrow.pendown()
44arrow.color ("green")
45arrow.begin_fill()
46arrow.setheading(120)
47arrow.forward(100)
48arrow.setheading(240)
49arrow.forward(100)
50arrow.setheading(270)
51arrow.end_fill()
52arrow.penup()
53arrow.forward(60)
54arrow.pendown()
55arrow.begin_fill()
56arrow.setheading(0)
57arrow.forward(100)
58arrow.setheading(120)
59arrow.forward(100)
60arrow.setheading(240)
61arrow.forward(100)
62arrow.setheading(270)
63arrow.end_fill()
64arrow.penup()
65arrow.setheading(0)
66arrow.forward(40)
67arrow.pendown()
68arrow.begin_fill()
69arrow.color("brown")
70arrow.setheading(270)
71arrow.forward(50)
72arrow.setheading(0)
73arrow.forward(20)
74arrow.setheading(90)
75arrow.forward(50)
76arrow.end_fill()
77arrow.penup()
78arrow.forward(30)
79arrow.color("green")
80turtle.done