标签: python numpy endianness
我有一个numpy.array,我想知道在底层表示中使用了什么字节顺序。
numpy.array
记录了byteorder属性here,但是没有一个给定的示例显示它与数组一起使用。
byteorder
答案 0 :(得分:4)
byteorder是数据类型对象dtype属性,因此您需要执行此操作:
dtype
In [10]: import numpy as np In [11]: arr = np.array([1,2,3]) In [12]: arr.dtype.byteorder Out[12]: '='