数据类型类 (numpy.dtypes)#

此模块包含与特定 dtype 相关功能及其类。有关 dtype 的更多一般信息,另请参见 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#