-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBatman.py
More file actions
50 lines (47 loc) · 766 Bytes
/
Batman.py
File metadata and controls
50 lines (47 loc) · 766 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
49
50
import turtle
#
turtle.bgcolor('black')
bat = turtle.Turtle()
bat.pensize(4)
bat.color('yellow', 'black')
bat.begin_fill()
bat.left(90)
bat.circle(50, 85)
bat.circle(15, 110)
bat.right(180)
bat.circle(30, 150)
bat.right(5)
bat.forward(10)
bat.right(90)
bat.circle(-70, 140)
bat.forward(40)
bat.right(110)
bat.circle(100, 30)
bat.circle(30, 100)
bat.left(50)
bat.forward(50)
bat.right(145)
bat.forward(30)
bat.left(55)
bat.forward(20)
bat.left(55)
bat.forward(30)
bat.right(145)
bat.forward(50)
bat.left(50)
#
bat.circle(30, 100)
bat.circle(100, 30)
bat.right(110)
bat.forward(40)
bat.circle(-70, 140)
bat.right(90)
bat.forward(10)
bat.right(5)
bat.circle(30, 150)
bat.left(180)
bat.circle(15, 110)
bat.circle(50, 85)
bat.end_fill()
bat.hideturtle()
turtle.done()