Echo Client & Server
MAKING OF ECHO SERVER
1.import socket and sys library as we are going to use them as main building blocks
import socket
import sys
2.Set up the socket which uses version 4 ip address and TCP protocol
door = socket.socket(socket.AF_INET,socket.SOCK_S...
booleanbug.hashnode.dev2 min read