-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChristmas 5.py
123 lines (107 loc) · 1.6 KB
/
Christmas 5.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
from turtle import *
speed(0)
#background
bgcolor("indigo")
#chain
penup()
goto(0,250)
pendown()
color("darkkhaki")
pensize(10)
right(90)
forward(100)
#attachment
pensize(1)
right(90)
back(20)
begin_fill()
for i in range(2):
forward(40)
left(90)
forward(10)
left(90)
end_fill()
#red bauble
penup()
goto(0,140)
pendown()
color("crimson")
begin_fill()
circle(200)
end_fill()
#gold zigzag
penup()
goto(176,30)
pendown()
color("gold")
pensize(3)
left(45)
for i in range(5):
forward(50)
right(90)
forward(50)
left(90)
#green circles
penup()
goto(-160,-65)
pendown()
color("limegreen")
left(135)
begin_fill()
for i in range(5):
circle(10)
penup()
forward(80)
pendown()
end_fill()
#gold zigzag
penup()
goto(-185,-135)
pendown()
color("gold")
pensize(3)
left(45)
for i in range(5):
forward(50)
right(90)
forward(50)
left(90)
forward(35)
#stars at top
penup()
goto(-105,80)
pendown()
pensize(1)
color("aliceblue")
setheading(0)
for i in range(3):
begin_fill()
for i in range(5):
forward(30)
right(144)
end_fill()
penup()
forward(90)
pendown()
#stars at bottom
penup()
goto(-105,-180)
pendown()
pensize(1)
setheading(0)
for i in range(3):
begin_fill()
for i in range(5):
forward(30)
right(144)
end_fill()
penup()
forward(90)
pendown()
#message
penup()
goto(-180,270)
pendown()
color("white")
write("SEASONS GREETINGS",font=("Arial",24,"bold"))
hideturtle()