本文简要介绍 python 语言中 numpy.dtype.fields
的用法。
用法:
dtype.fields
为此数据类型定义的命名字段字典,或
None
。字典由作为字段名称的键索引。字典中的每个条目都是一个完整说明该字段的元组:
(dtype, offset[, title])
偏移量仅限于 C int,它是有符号的,通常为 32 位。如果存在,可选标题可以是任何对象(如果它是字符串或 unicode,那么它也将是字段字典中的键,否则它是 meta-data)。另请注意,元组的前两个元素可以直接作为参数传递给
ndarray.getfield
和ndarray.setfield
方法。例子:
>>> dt = np.dtype([('name', np.str_, 16), ('grades', np.float64, (2,))]) >>> print(dt.fields) {'grades': (dtype(('float64',(2,))), 16), 'name': (dtype('|S16'), 0)}
相关用法
- Python numpy dtype.flags用法及代码示例
- Python numpy dtype.isbuiltin用法及代码示例
- Python numpy dtype.shape用法及代码示例
- Python numpy dtype.ndim用法及代码示例
- Python numpy dtype.alignment用法及代码示例
- Python numpy dtype.names用法及代码示例
- Python numpy dtype.__class_getitem__用法及代码示例
- 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.itemsize用法及代码示例
- 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.fields。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。