-
Notifications
You must be signed in to change notification settings - Fork 0
/
printer.py
20 lines (18 loc) · 1 KB
/
printer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from random import randint
def random_slogan():
slogans = [
'now without Discard!',
'discard',
'why??',
'...',
'press alt + F4 for help'
]
print(f'\t{slogans[randint(0, len(slogans) - 1)]}')
def logo():
print(' ###### #### ##### ## ######## ###### ')
print(' #### ### # # ### ## #### ### # # # # ##### ')
print(' ####### #### # ## ## ## ## ## # ## # ### # ')
print(' ### #### ###### ### ## ## # # ## ## ')
print(' ######## #### #### ## ## ######## # # # # # ### ')
print(' ########### ### #### ## ### #### ### ## ## # # # # ##### ')
print(' ######### ##### #### ##### ## ## ##### #### ####### ')