當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Numpy np.can_cast()用法及代碼示例


借助np.can_cast()方法,我們可以得出一個完美的主意,即一種數據類型可以通過使用而不能轉換為另一種數據類型np.can_cast()方法。

用法: np.can_cast(source data_type, target data_type)
返回: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



相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Numpy np.can_cast() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。