Python numpy.promoted_types()函数
numpy.promot_types()函数是一个对称的函数,它返回具有最小尺寸和最小标量种类的数据类型,type1和type2都可以安全地投射到该类型。返回的数据类型总是按本地字节顺序排列。
语法: numpy.promote_types(type1, type2)
参数 :
type1 : [dtype或dtype specifier] 第一个数据类型。
type2 : [dtype或dtype specifier] 第二个数据类型。
返回 : [dtype] 返回推广的数据类型。
代码#1:
# Python program explaining
# numpy.promote_types() function
# importing numpy as geek
import numpy as geek
gfg = geek.promote_types('f4', 'i8')
print (gfg)
输出 :
float64
代码#2:
# Python program explaining
# numpy.promote_types() function
# importing numpy as geek
import numpy as geek
gfg = geek.promote_types('>i8', '<c8')
print (gfg)
输出 :
complex128