我正在尝试将C代码段转换为python。
所述功能的目的是从PLC获取4位,8位读数,并将它们解码为单个浮点数。
float conv_float_s7_pc(char * plc_real)
{
char tmp[4];
tmp[0] = * (plc_real + 3);
tmp[1] = * (plc_real + 2);
tmp[2] = * (plc_real + 1);
tmp[3] = * (plc_real + 0);
return (* (float *) tmp) ;
}
是否有一些可以干净地执行此功能的Python魔法?
当我试图转换上面的函数时,更普遍的问题是,你如何在python中执行这样的内存“重新解释”?
这让我得到了我需要的东西:
import struct
def conv_to_float(plc):
temp = struct.pack("BBBB", plc[0], plc[1], plc[2], plc[3])
output = struct.unpack(">f", temp)[0]
return output
答案 0 :(得分:4)
使用struct module格式为f
的<{3}}
>>> import struct
>>> plc_real = "1234"
>>> struct.unpack("f", plc_real)[0]
1.6688933612840628e-07
确保使用<
或>
来设置所需的字节顺序