我正在尝试将转换uint32_t
值复制到unsigned char
python 中的数组(我已经在 C 中完成了)
这是我现有的 C 函数:
unsigned char *uint32_to_char_array(const uint32_t n)
{
unsigned char *a;
a = wrap_calloc(4, sizeof(unsigned char));
a[0] = (n >> 24) & 0xff; /* high-order (leftmost) byte: bits 24-31 */
a[1] = (n >> 16) & 0xff; /* next byte, counting from left: bits 16-23 */
a[2] = (n >> 8) & 0xff; /* next byte, bits 8-15 */
a[3] = n & 0xff; /* low-order byte: bits 0-7 */
return a;
}
如果我要在 gdb 中执行以下操作:
(gdb) p uint32_to_char_array(0x00240918)[0]@4 = "\000$\t\030"
这就是我试图在 python 中生成的字符串。
即对于uint32_t
输入值,0x240918
我想要一个输出字符串"\000$\t\030"
我已经搜索过,但到目前为止无济于事,尤其是这个->如何在python中将整数值转换为四个字节的数组,但似乎没有一个答案能产生上述输入/输出组合
我正在使用 2.7,但如果需要,可以使用 > 3.0。
更新:
Python 3.5.2 (default, Nov 12 2018, 13:43:14)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 0x240918.to_bytes(4, "big")
b'\x00$\t\x18'
嗯有点不同——我敢肯定答案正盯着我看,但我看不出它是什么?
所以我可以看到:
>>> b"\000$\t\030"
b'\x00$\t\x18'
但是如何实现相反的结果呢?IE
>>> b'\x00$\t\x18'
b"\000$\t\030"
也许问题是我如何以八进制而不是十六进制打印字节文字?