数据类型类 (numpy.dtypes)#

此模块包含特定数据类型相关功能及其类。有关数据类型的更多一般信息,请参阅 numpy.dtype数据类型对象 (dtype).

类似于内置的 types 模块,此子模块定义了通常不会直接使用的类型(类)。

NumPy 版本中的新增功能1.25

dtypes 模块是 NumPy 1.25 中的新增功能。以前,DType 类只能间接访问。

DType 类#

以下是相应 NumPy dtype 实例和 NumPy 标量类型的类。这些类可以在 isinstance 检查中使用,也可以直接实例化或使用。这些类的直接使用并不常见,因为它们的标量对应物(例如 np.float64)或字符串(例如 "float64")可以使用。

布尔值#

numpy.dtypes.BoolDType[source]#

位大小的整数#

numpy.dtypes.Int8DType[source]#
numpy.dtypes.UInt8DType#
numpy.dtypes.Int16DType#
numpy.dtypes.UInt16DType#
numpy.dtypes.Int32DType#
numpy.dtypes.UInt32DType#
numpy.dtypes.Int64DType#
numpy.dtypes.UInt64DType#

C 命名整数(可能别名)#

numpy.dtypes.ByteDType[source]#
numpy.dtypes.UByteDType#
numpy.dtypes.ShortDType#
numpy.dtypes.UShortDType#
numpy.dtypes.IntDType#
numpy.dtypes.UIntDType#
numpy.dtypes.LongDType#
numpy.dtypes.ULongDType#
numpy.dtypes.LongLongDType#
numpy.dtypes.ULongLongDType#

浮点数#

numpy.dtypes.Float16DType[source]#
numpy.dtypes.Float32DType#
numpy.dtypes.Float64DType#
numpy.dtypes.LongDoubleDType#

复数#

numpy.dtypes.Complex64DType[source]#
numpy.dtypes.Complex128DType#
numpy.dtypes.CLongDoubleDType#

字符串和字节字符串#

numpy.dtypes.StrDType[source]#
numpy.dtypes.BytesDType#
numpy.dtypes.StringDType#

时间#

numpy.dtypes.DateTime64DType[source]#
numpy.dtypes.TimeDelta64DType#

其他#

numpy.dtypes.ObjectDType[source]#
numpy.dtypes.VoidDType#