-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
title.py
25 lines (22 loc) · 989 Bytes
/
title.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
import os
Y = '\033[33m' # yellow
R = '\033[31m' # red
G = '\033[32m' # green
C = '\033[36m' # cyan
W = '\033[0m' # white
def title():
os.system("clear")
print(Y)
print(" ____ _ _ ____ ")
print("/ ___| ___ ___(_) __ _| | / ___| ___ _ __ __ _ _ __ _ __ ___ _ __ ")
print("\___ \ / _ \ / __| |/ _` | | \___ \ / __| '__/ _` | '_ \| '_ \ / _ \ '__|")
print(" ___) | (_) | (__| | (_| | | ___) | (__| | | (_| | |_) | |_) | __/ | ")
print("|____/ \___/ \___|_|\__,_|_| |____/ \___|_| \__,_| .__/| .__/ \___|_| ")
print(" |_| |_|")
print(Y+"Creators:\n")
print("\t"+Y+"T3cH_W1z4rD"+W+"<[email protected]>")
print("\t"+Y+"Game0v3r"+W+"<[email protected]>")
print("\t"+Y+"N0oB_T3cH1e"+W+"<[email protected]>")
print("\t"+Y+"T3chY.BabA"+W+"<[email protected]>")
print("_"*83)
print("\n")