写入文本的格式编码转换。 修改后的代码 data=remote_conn.recv(10000).decode(‘utf-8’) 主要理清ssh发送指令接收到的内容的类型,文件读写内容类型就可以解决问题了。 data=remote_conn.recv(10000) 这个函数recv()在Linux python中收到的内容类型是bytes,在设备上显示默认使用utf-8格式 print(type(remote_conn...