📜  Python| Numpy np.can_cast() 方法

📅  最后修改于: 2022-05-13 01:54:24.942000             🧑  作者: Mango

Python| Numpy np.can_cast() 方法

np.can_cast()方法的帮助下,我们可以完美地了解一种数据类型是否可以通过使用np.can_cast()方法转换为另一种数据类型。

示例 #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)

输出 :

示例 #2:

# import numpy
import numpy as np
  
# using np.can_cast() method
gfg = np.can_cast(5.5e10, np.int32)
  
print(gfg)

输出 :