Skip to content

Commit f76cf5d

Browse files
authored
Add files via upload
1 parent f97ef09 commit f76cf5d

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

Batman art.py

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
2+
#Batman Art Logo
3+
from turtle import *
4+
5+
def run():
6+
forward(10)
7+
your_left(90)
8+
forward(30)
9+
your_right(150)
10+
forward(35)
11+
your_left(40)
12+
for i in range(70):
13+
your_left(1)
14+
forward(3)
15+
your_right(70)
16+
forward(100)
17+
your_right(140)
18+
forward(100)
19+
your_left(40)
20+
forward(30)
21+
your_right(55)
22+
forward(130)
23+
your_left(40)
24+
forward(103)
25+
26+
def your_right(num):
27+
if(mirror):
28+
right(num)
29+
else:
30+
left(num)
31+
32+
def your_left(num):
33+
if(mirror):
34+
left(num)
35+
else:
36+
right(num)
37+
38+
bgcolor(0.99,0.035,0.04)
39+
mirror=True
40+
pencolor('#000')
41+
pensize(3)
42+
fillcolor('#000')
43+
begin_fill()
44+
up()
45+
goto(0,100)
46+
down()
47+
run()
48+
up()
49+
goto(0,100)
50+
down()
51+
mirror=False
52+
right(45)
53+
run()
54+
goto(0,-20)
55+
end_fill()
56+
57+
up()
58+
goto(-200,-150)
59+
60+
write("''When that light hits the sky,\nit's not just a call it's a warning.''\n\t\tThe BatMan(2022)",font=('Arial',18,'bold'))
61+
goto(-500,-500)
62+
done()

0 commit comments

Comments
 (0)