说明获取到数据高八位第八位特别感谢张哥的代码支持,写的肥肠好 代码123456def get_high_low_data(data): if data == 0: return (0, 0) temp_h = data >> 8 temp_l = data - (temp_h << 8) return (temp_h, temp_l)