Python numpy.obj2sctype()函数
numpy.obj2sctype()函数返回一个对象的标量dtype或相当于Python类型的NumPy。
语法: numpy.obj2sctype(rep, default = None)
参数 :
rep : [any] 返回类型的对象。
default : [any, optional] 如果给定,对于无法确定类型的对象,将返回这个。如果没有给定,对于这些对象将返回None。
返回: [dtype 或 Python type] 返回 rep 的数据类型。
代码#1:
# Python program explaining
# numpy.obj2sctype() function
# importing numpy as geek
import numpy as geek
gfg = geek.obj2sctype(geek.float64)
print (gfg)
输出 :
class 'numpy.float64'
代码#2:
# Python program explaining
# numpy.obj2sctype() function
# importing numpy as geek
import numpy as geek
gfg = geek.obj2sctype(geek.array([1.j]))
print (gfg)
输出 :
class 'numpy.complex128'