Python Numpy np.can_cast()方法
在np.can_cast()方法的帮助下,我们可以得到一个完美的概念,即一个数据类型是否可以通过使用np.can_cast()方法投射到另一个数据类型。
语法: np.can_cast(source data_type, target data_type)
返回:当可以进行铸造时,返回布尔值为真,否则为假。
例子#1 :
在这个例子中,我们可以看到,通过使用np.can_cast()方法,我们能够得到布尔值,当可以进行铸造时为真,否则使用此方法为假。
# import numpy
import numpy as np
# using np.can_cast() method
gfg = np.can_cast(np.int32, np.int64)
print(gfg)
输出 :
True
例子#2 :
# import numpy
import numpy as np
# using np.can_cast() method
gfg = np.can_cast(5.5e10, np.int32)
print(gfg)
输出 :
False