作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个字节串,它有多个 4 个字节。每 4 个字节都是一个 float ,但对于每 4 个字节,前两个字节和后两个字节需要交换。
示例:
input = b'\x00\x00@\xb9a\xa8\xbdf'
struct.unpack('f', b'\x00\x00@\xb9') #-0.00018310546875 is incorrect
struct.unpack('>f', b'\x00\x00@\xb9') #2.3218114255397894e-41 is incorrect
struct.unpack('>f', b'@\xb9\x00\x00') # 5.78125 is correct
如何轻松交换两个高字节和两个低字节?
下一个代码是正确的
h = b''
for i in range(0, len(input), 4):
h += struct.pack('BBBB', *(d[i+2],d[i+3],d[i],d[i+1]))
struct.unpack('>ff', h) # is correct (5.78125, -0.05624547600746155)
但可能还有另一种更简单的方法。
最佳答案
这对我有用:
>>> a = b'\x12\x34\x56\x78\x9a\xbc\xde\xf0'
>>> ''.join( [chr(a[i^2]) for i in range(len(a))] )
'Vx\x124Þð\x9a¼'
>>>
您甚至不需要为此使用struct
。
关于python - 如何在 Python 3 中交换两对字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58321811/
我是一名优秀的程序员,十分优秀!