-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbolas.py
More file actions
29 lines (14 loc) · 669 Bytes
/
bolas.py
File metadata and controls
29 lines (14 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import time
def B ():
a = ((' '+'.'*8+' ')*2)
b = ((' '+'.'*12+' ')*2)
c = (('.'*14+' ')*2)
return (a + '\n'+b+'\n' + c+'\n' + c+'\n' + b+'\n' + a)
print(B())
C= ((' / \\'+' ')+'\n')*10+' / \\'
print(C)
CA= ' . T . \n '+' . .\n'+' . .\n'+ ' . .\n'+ ' .______________.'
print(CA)
P=' V'+' . .\n'+' . .\n'+' . .\n'+' . .\n' + ' . .\n'+' . .\n' +' . .\n' + ' . \n'
time.sleep(5)
print(P)