int.from_bytes()是如何计算的?

时间:2018-05-24 12:06:57

标签: python python-3.x byte

我想了解from_bytes()实际上做了什么。

documentation mention this

  

byteorder参数确定用于表示整数的字节顺序。如果byteorder为“big”,则最重要的字节位于字节数组的开头。如果byteorder是“little”,则最重要的字节位于字节数组的末尾。要请求主机系统的本机字节顺序,请使用sys.byteorder作为字节顺序值。

但这并没有真正告诉我如何实际计算字节值。例如,我有这组字节:

In [1]: byte = b'\xe6\x04\x00\x00'

In [2]: int.from_bytes(byte, 'little')
Out[2]: 1254

In [3]: int.from_bytes(byte, 'big')
Out[3]: 3859021824

In [4]:

我尝试ord()并返回此信息:

In [4]: ord(b'\xe6')
Out[4]: 230

In [5]: ord(b'\x04')
Out[5]: 4

In [6]: ord(b'\x00')
Out[6]: 0

In [7]:

我看不出上述值是如何计算12543859021824的。

我还发现了this question,但似乎并没有解释它是如何工作的。

那怎么计算?

1 个答案:

答案 0 :(得分:4)

大字节顺序类似于通常的十进制表示法,但在基数256:

230 * 256**3 + 4 * 256**2 + 0 * 256**1 + 0 * 256**0 = 3859021824

就像

一样
1234 = 1 * 10**3 + 2 * 10**2 + 3 * 10**1 + 4 * 10**0

对于小字节顺序,顺序颠倒过来:

0 * 256**3 + 0 * 256**2 + 4 * 256**1 + 230 = 1254