摘要: 服务端: import socket sock = socket.socket() sock.bind(("127.0.0.1",8899)) sock.listen(5) while True: print("server is waiting...") client_sock, client_a 阅读全文
posted @ 2021-06-19 19:50 映辉 阅读(93) 评论(0) 推荐(0)