-
Notifications
You must be signed in to change notification settings - Fork 0
/
ascii.py
32 lines (29 loc) · 1.82 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
def print_hacker_computer():
computer = r"""
_____________________________________________________
/ /\
/ ╔═══════════════╗ / \
/ ║ C:\>_ XYZZY ║ / \
/ ║ Install Conda ║ / \
/ ║ Install Python║ / \
/ ║ Install CUDA ║ / \
/ ╚═══════════════╝ / \
/ ______________________________________________________ \
/____/ [] [] [] [] [] [] [] [] [] [] [] [] \_________\
| |
| _______ ________ __________ _________ ________ |
| |\ ___\ | _____ \ \ _______\ |\ __ \ |\__ __\ |
| \ \ \ \ \ \ \ \ \ \ \ ___ \ \ \ \ \ \___ \ \ |
| \ \ \ \ \ \ \ \ \ \ \ \_ \ \ \ \ \ \ _\ \ \ |
| \ \ \____ \ \ \___\ \ \ \ \___\ \ \ \ \ \ \ \ __\ \__ |
| \ \______\ \ \_______\ \ \_______\ \ \__\ \__\ \ \______\ |
| \|______| \|_______| \|_______| \|__| |__| \|______| |
| |
| website: www.cognibuild.ai |
| Patreon: www.patreon.com/cognibuild |
| Youtube: www.youtube.com/@cognibuild |
\_____________________________________________________________________/
"""
print(computer)
if __name__ == "__main__":
print_hacker_computer()