-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.py
92 lines (76 loc) · 1.25 KB
/
result.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
from turtle import *
import turtle as tur
tur.penup()
tur.left(90)
tur.fd(200)
tur.pendown()
tur.right(90)
tur.fillcolor("red")
tur.begin_fill()
tur.circle(10,180)
tur.circle(25,110)
tur.left(50)
tur.circle(60,45)
tur.circle(20,170)
tur.right(24)
tur.fd(30)
tur.left(10)
tur.circle(30,110)
tur.fd(20)
tur.left(40)
tur.circle(90,70)
tur.circle(30,150)
tur.right(30)
tur.fd(15)
tur.circle(80,90)
tur.left(15)
tur.fd(45)
tur.right(165)
tur.fd(20)
tur.left(155)
tur.circle(150,80)
tur.left(50)
tur.circle(150,90)
tur.end_fill()
tur.left(150)
tur.circle(-90,70)
tur.left(20)
tur.circle(75,105)
tur.setheading(60)
tur.circle(80,98)
tur.circle(-90,40)
tur.left(180)
tur.circle(90,40)
tur.circle(-80,98)
tur.setheading(-83)
tur.fd(30)
tur.left(90)
tur.fd(25)
tur.left(45)
tur.fillcolor("green")
tur.begin_fill()
tur.circle(-80,90)
tur.right(90)
tur.circle(-80,90)
tur.end_fill()
tur.right(135)
tur.fd(60)
tur.left(180)
tur.fd(85)
tur.left(90)
tur.fd(80)
tur.right(90)
tur.right(45)
tur.fillcolor("green")
tur.begin_fill()
tur.circle(80,90)
tur.left(90)
tur.circle(80,90)
tur.end_fill()
tur.left(135)
tur.fd(60)
tur.left(180)
tur.fd(60)
tur.right(90)
tur.circle(200,60)
tur.done()