1>>> int.from_bytes(b'\x00\x10', byteorder='big')
216
3>>> int.from_bytes(b'\x00\x10', byteorder='little')
44096
5>>> int.from_bytes(b'\xfc\x00', byteorder='big', signed=True)
6-1024
7>>> int.from_bytes(b'\xfc\x00', byteorder='big', signed=False)
864512
9>>> int.from_bytes([255, 0, 0], byteorder='big')
1016711680
11