예제 #1
0
from Client0 import Client
PRACTICE = 2
EXERCISE = 2
print(f"-----| Practice {PRACTICE}, Exercise {EXERCISE} |------")
IP = "192.168.56.1"
PORT = 8080
c = Client(IP, PORT)

c.__str__()
from Client0 import Client

PRACTICE = 2
EXERCISE = 2

print(f"-----| Practice {PRACTICE}, Exercise {EXERCISE} |------")

# -- Parameters of the server to talk to
IP = "192.168.1.153"
PORT = 8080

# -- Create a client object
c = Client(IP, PORT)
print(c.__str__())