2
n = 257
a = n.to_bytes(2, 'little')
a = b'\x01\x01'
我如何轉換這回257
此外,有沒有什麼辦法可以顯示to_bytes
而不指定多少字節?
n = 257
a = n.to_bytes(2, 'little')
a = b'\x01\x01'
我如何轉換這回257
此外,有沒有什麼辦法可以顯示to_bytes
而不指定多少字節?
使用補充int.from_bytes
並再次指定字節順序。
>>> n = 257
>>> n_bytes = n.to_bytes(2, "little")
>>> n_again = int.from_bytes(n_bytes, "little")
>>> n_again == n
True