在python中重新排序两个字节的十六进制

时间:2017-09-19 18:12:50

标签: python hex decimal

我需要一种快速有效的方法。

0x11 and 0xc  ->  0x0c11
0x16 and 0x44 -> 0x4416

我目前这样做的方式就像我认为导致我放慢速度

hexs = str('0x' + format(second, '02x')) + str(format(first, '02x'))
return int(hexs, 0)

我看到其他类似的例子,但它们似乎没有在第一个例子的前0中添加。它需要是2个字节。

mentioned就是一个似乎无法发挥作用的例子。

0 个答案:

没有答案