Server Client Communication Python
问题 Server import socket import sys s=socket.socket(socket.AF_INET,socket.SOCK_STREAM) host= 'VAC01.VACLab.com' port=int(2000) s.bind((host,port)) s.listen(1) conn,addr =s.accept() data=s.recv(100000) s.close CLIENT import socket import sys s=socket.socket(socket.AF_INET,socket.SOCK_STREAM) host="VAC01.VACLab.com" port=int(2000) s.connect((host,port)) s.send(str.encode(sys.argv[1])) s.close() I want the server to receive the data that client sends. I get the following error when i try this CLIENT