-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathascii.py
74 lines (69 loc) · 1.69 KB
/
ascii.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
import random
def print_ascii_title():
'''Print a random ascii title in the terminal.
Arguments: None
Return: None'''
ascii_values = [
'''
___. _____
_____\_ |___/ ____\\
/ ___/| __ \ __\\
\___ \ | \_\ \ |
/____ >|___ /__|
\/ \/
''',
'''
_ __
| | / _|
___| |__ | |_
/ __| '_ \| _|
\__ \ |_) | |
|___/_.__/|_|
''',
'''
) (
( /( )\ )
( )\())(()/(
)\ ((_)\ /(_))
((_)| |(_)(_) _|
(_-<| '_ \ | _|
/__/|_.__/ |_|
''',
'''
__ ____
_____/ /_ / __/
/ ___/ __ \/ /_
(__ ) /_/ / __/
/____/_.___/_/
''',
'''
,, ,...
*MM .d' ""
MM dM`
,pP"Ybd MM,dMMb. mMMmm
8I `" MM `Mb MM
`YMMMa. MM M8 MM
L. I8 MM. ,M9 MM
M9mmmP' P^YbmdP'.JMML.
''',
'''
__ ___
/\ \ /'___\\
____\ \ \____/\ \__/
/',__\\\ \ '__`\ \ ,__\\
/\__, `\\\ \ \L\ \ \ \_/
\/\____/ \ \_,__/\ \_\\
\/___/ \/___/ \/_/
''',
'''
______ ________
__________ /____ __/
__ ___/_ __ \_ /_
_(__ )_ /_/ / __/
/____/ /_.___//_/
'''
]
print(ascii_values[random.randrange(len(ascii_values))])
print(' Shopping Bot Framework')
print(' ----------------------')
print()