标签:style blog color os sp div c on log
# socket_server.py import socket s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM) s.bind((‘‘,8089)) while True: # Receive up to 1,024 bytes in a datagram data, addr = s.recvfrom(1024) print "Received:", data, "from", addr
# socket_client.py import socket s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) port = 8089 host = "localhost" while True: msg = raw_input(‘Enter message:‘) s.sendto(msg, (host, port))
标签:style blog color os sp div c on log
原文地址:http://www.cnblogs.com/zxlovenet/p/4006637.html