Python Numpy np.can_cast()方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程