841import turtle
2
3t = turtle.Turtle()
4t.speed(0)
5
6# draw first star at (0,0)
7t.pu()
8t.goto(0,0)
9t.pd()
10t.forward(20)
11t.right(144)
12t.forward(20)
13t.right(144)
14t.forward(20)
15t.right(144)
16t.forward(20)
17t.right(144)
18t.forward(20)
19t.right(144)
20
21# draw second star at (100, 100)
22t.pu()
23t.goto(100,100)
24t.pd()
25t.forward(20)
26t.right(144)
27t.forward(20)
28t.right(144)
29t.forward(20)
30t.right(144)
31t.forward(20)
32t.right(144)
33t.forward(20)
34t.right(144)
35
36# draw third star at (-100, 100)
37t.pu()
38t.goto(-100,100)
39t.pd()
40t.forward(20)
41t.right(144)
42t.forward(20)
43t.right(144)
44t.forward(20)
45t.right(144)
46t.forward(20)
47t.right(144)
48t.forward(20)
49t.right(144)
50
51# draw forth star at (-100, -100)
52t.pu()
53t.goto(-100, -100)
54t.pd()
55t.forward(20)
56t.right(144)
57t.forward(20)
58t.right(144)
59t.forward(20)
60t.right(144)
61t.forward(20)
62t.right(144)
63t.forward(20)
64t.right(144)
65
66# draw fifth star at (100, -100)
67t.pu()
68t.goto(100, -100)
69t.pd()
70t.forward(20)
71t.right(144)
72t.forward(20)
73t.right(144)
74t.forward(20)
75t.right(144)
76t.forward(20)
77t.right(144)
78t.forward(20)
79t.right(144)
80
81# Challenges:
82# 1) Make a procedure called draw_star which lets you draw a star at any position
83# 2) Use a for loop to draw each of the 5 points of each star
84# 3) Add a third parameter to your draw_star procedure so that you can change the size of each star