摘要: HTML 初识 web服务本质 import socket def main(): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.bind(('localhost',8081)) sock.listen(5) while 阅读全文
posted @ 2017-07-31 19:26 牛斌 阅读(167) 评论(0) 推荐(0) 编辑