-
Notifications
You must be signed in to change notification settings - Fork 6
/
trchat.py
26 lines (23 loc) · 960 Bytes
/
trchat.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
def home_logo():
print("""
#### ## ## ### ##### ####### #######
## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ## ##
## ######### ## ## ## ## ####### ########
## ## ## ######### ## ## ## ## ##
## ## ## ## ## ## ## ## ## ## ##
#### ## ## ## ## ##### ####### #######
IHA089: Navigating the Digital Realm with Code and Security - Where Programming Insights Meet Cyber Vigilance.
""")
def Main():
home_logo()
print("1\tStart Server\n2\tConnect with server")
select = int(input("Select ::: "))
if select == 1:
import server
elif select == 2:
import client
else:
print("Please choose 1 or 2")
if __name__ == "__main__":
Main()