路飞学城Python-Day32【小结】
摘要:
import socket from multiprocessing import Process def talk(conn): while True: try: data = conn.recv(1024) if not data:break conn.send(data.upper()) ex 阅读全文
posted @ 2018-07-31 21:52 pandaboy1123 阅读(208) 评论(0) 推荐(0) 编辑