Menu

Little Endian and Big Endian

 This is a practical example using python.


>>> (5).to_bytes(5, byteorder='little')
b'\x05\x00\x00\x00\x00'
>>> (5).to_bytes(5, byteorder='big')
b'\x00\x00\x00\x00\x05'
view raw byte-order.py hosted with ❤ by GitHub


No comments:

Post a Comment