numpy.lib.format.dtype_to_descr#

lib.format.dtype_to_descr(dtype)[source]#

从 dtype 获取可序列化的描述符。

dtype 对象的 .descr 属性无法通过 dtype() 构造函数进行往返转换。简单的类型,例如 dtype(‘float32’),具有一个看起来像具有一个字段的记录数组的 descr,其中字段名为 ‘’。dtype() 构造函数将其解释为请求提供默认名称。相反,我们构建可以传递给 dtype() 的描述符。

参数:
dtypedtype

将写入磁盘的数组的 dtype。

返回:
descrobject

可以传递给 numpy.dtype() 以复制输入 dtype 的对象。