摘要: 使用socket模块实现简单群聊 1 import socket,threading,time,logging 2 3 logging.basicConfig(level=logging.INFO,format="%(message)s") 4 5 class Server: 6 7 def __i 阅读全文