當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。