我有:
n = 257
a = n.to_bytes(2, 'little')
a = b'\x01\x01'
如何将其转换回257
另外,有没有办法显示to_bytes
而没有指定多少字节?
答案 0 :(得分:3)
使用补充int.from_bytes
并再次指定字节顺序。
>>> n = 257
>>> n_bytes = n.to_bytes(2, "little")
>>> n_again = int.from_bytes(n_bytes, "little")
>>> n_again == n
True