-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextra python.py
More file actions
51 lines (48 loc) · 807 Bytes
/
extra python.py
File metadata and controls
51 lines (48 loc) · 807 Bytes
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
# import turtle
# t = turtle.Turtle()
# t.pencolor('grey')
# t.begin_fill()
# t.fillcolor('grey')
# for i in range(2):
# t.forward(100)
# t.right(90)
# t.forward(50)
# t.right(90)
# t.end_fill()
# t.begin_fill()
# t.penup()
# t.goto(0,-60)
# t.down()
# t.pencolor('red')
# t.fillcolor('red')
# t.circle(15)
# t.end_fill()
# t.penup()
# t.goto(100,-60)
# t.pendown()
# t.begin_fill()
# t.circle(15)
# t.fillcolor('red')
# t.end_fill()
# # t.penup()
# # t.goto(45,-15)
# # t.pendown()
# # for i in range(4):
# # t.forward(10)
# # t.right(90)
# t.penup()
# t.goto(10,0)
# t.pendown()
# t.color('grey')
# t.left(60)
# t.forward(50)
# t.right(60)
# t.forward(25)
# t.right(60)
# t.forward(50)
# t.penup()
# t.goto(47,0)
# t.pendown()
# t.setheading(90)
# t.forward(45)
# turtle.done()