摘要: 1. 一个简单的web应用程序 1 import socket 2 # 创建socket对象 3 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 4 # 绑定IP和端口 5 sock.bind(("127.0.0.1", 9999)) 阅读全文
posted @ 2019-11-04 18:05 Iceyine 阅读(174) 评论(0) 推荐(0) 编辑