Python| Numpy np.can_cast() 方法
在np.can_cast()
方法的帮助下,我们可以完美地了解一种数据类型是否可以通过使用np.can_cast()
方法转换为另一种数据类型。
Syntax : np.can_cast(source data_type, target data_type)
Return : Return the boolean value as true when casting can be done else false.
示例 #1:
在这个例子中,我们可以看到,通过使用np.can_cast()
方法,我们可以将布尔值设为 true,而使用此方法可以执行强制转换,否则为 false。
# 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