本文简要介绍 python 语言中 numpy.dtype.isbuiltin
的用法。
用法:
dtype.isbuiltin
指示此 dtype 如何与内置 dtypes 相关的整数。
只读。
0
如果这是结构化数组类型,带有字段
1
如果这是编译成 numpy 的 dtype(例如整数、浮点数等)
2
如果 dtype 用于用户定义的 numpy 类型 用户定义的类型使用 numpy C-API 机制来扩展 numpy 以处理新的数组类型。请参阅 NumPy 手册中的用户定义数据类型。
例子:
>>> dt = np.dtype('i2') >>> dt.isbuiltin 1 >>> dt = np.dtype('f8') >>> dt.isbuiltin 1 >>> dt = np.dtype([('field1', 'f8')]) >>> dt.isbuiltin 0
相关用法
- Python numpy dtype.itemsize用法及代码示例
- Python numpy dtype.shape用法及代码示例
- Python numpy dtype.ndim用法及代码示例
- Python numpy dtype.alignment用法及代码示例
- Python numpy dtype.names用法及代码示例
- Python numpy dtype.__class_getitem__用法及代码示例
- Python numpy dtype.flags用法及代码示例
- Python numpy dtype.fields用法及代码示例
- Python numpy dtype.subdtype用法及代码示例
- Python numpy dtype.descr用法及代码示例
- Python numpy dtype.kind用法及代码示例
- Python numpy dtype.metadata用法及代码示例
- Python numpy dtype.newbyteorder用法及代码示例
- Python numpy dtype.char用法及代码示例
- Python numpy dtype.base用法及代码示例
- Python numpy dtype.byteorder用法及代码示例
- Python numpy dtype.num用法及代码示例
- Python numpy dtype.name用法及代码示例
- Python numpy dtype用法及代码示例
- Python numpy diagonal用法及代码示例
- Python numpy divmod用法及代码示例
- Python numpy diagflat用法及代码示例
- Python numpy delete用法及代码示例
- Python numpy dec.setastest用法及代码示例
- Python numpy datetime_as_string用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.dtype.isbuiltin。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。