1.收发字符串处理 # 接收字符处理 b转str # json_str = str(self.data, encoding="utf8") json_str = self.data.decode("utf-8") # 发送字符处理 str转b data.encode() 来源:oschina链接:https://my.oschina.net/u/4283640/blog/4284135 标签 python socketserver