2014-04-08 17:40:58 -04:00
|
|
|
print((10).to_bytes(1, "little"))
|
|
|
|
print((111111).to_bytes(4, "little"))
|
|
|
|
print((100).to_bytes(10, "little"))
|
2015-04-25 18:16:39 -04:00
|
|
|
print((2**64).to_bytes(9, "little"))
|
2014-04-08 17:40:58 -04:00
|
|
|
print(int.from_bytes(b"\x00\x01\0\0\0\0\0\0", "little"))
|
|
|
|
print(int.from_bytes(b"\x01\0\0\0\0\0\0\0", "little"))
|
|
|
|
print(int.from_bytes(b"\x00\x01\0\0\0\0\0\0", "little"))
|