当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy obj2sctype用法及代码示例


本文简要介绍 python 语言中 numpy.obj2sctype 的用法。

用法:

numpy.obj2sctype(rep, default=None)

返回对象的 Python 类型的标量 dtype 或 NumPy 等效项。

参数

rep 任何

返回类型的对象。

default 任何,可选

如果给定,则为无法确定类型的对象返回 this。如果未给出,则为这些对象返回 None 。

返回

dtype dtype 或 Python 类型

代表的数据类型。

例子

>>> np.obj2sctype(np.int32)
<class 'numpy.int32'>
>>> np.obj2sctype(np.array([1., 2.]))
<class 'numpy.float64'>
>>> np.obj2sctype(np.array([1.j]))
<class 'numpy.complex128'>
>>> np.obj2sctype(dict)
<class 'numpy.object_'>
>>> np.obj2sctype('string')
>>> np.obj2sctype(1, default=list)
<class 'list'>

相关用法


注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.obj2sctype。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。