numpy.promote_types()函数– Python
numpy.promote_types()
函数是一个对称函数,它返回具有最小大小和最小标量类型的数据类型,type1 和 type2 都可以安全地转换为该类型。返回的数据类型始终按本机字节顺序排列。
Syntax : numpy.promote_types(type1, type2)
Parameters :
type1 : [dtype or dtype specifier] First data type.
type2 : [dtype or dtype specifier] Second data type.
Return : [dtype] Return the promoted data type.
代码#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', '
输出 :
complex128