-
Notifications
You must be signed in to change notification settings - Fork 1
/
banner.py
19 lines (17 loc) · 1.26 KB
/
banner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import colors
def print_banner():
print(
f'''
/$$
| $$
/$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$$
/$$__ $$ /$$__ $$ /$$__ $$ /$$__ $$ /$$__ $$ /$$__ $$ /$$_____/ /$$__ $$| $$__ $$
| $$ | $$| $$ \ $$| $$ \ $$| $$$$$$$$ | $$ \__/| $$$$$$$$| $$ | $$ \ $$| $$ \ $$
| $$ | $$| $$ | $$| $$ | $$| $$_____/ | $$ | $$_____/| $$ | $$ | $$| $$ | $$
| $$$$$$$| $$$$$$/| $$$$$$$/| $$$$$$$ | $$ | $$$$$$$| $$$$$$$| $$$$$$/| $$ | $$
\_______/ \______/ | $$____/ \_______/ |__/ \_______/ \_______/ \______/ |__/ |__/
| $$
| $$ Built out boredom by {colors.OKBLUE}hatecomputers{colors.ENDC}
|__/
'''
)