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


Python numpy.issubsctype()用法及代碼示例


numpy.issubsctype()函數用於確定第一個參數是否是第二個參數的子類。如果第一個參數是第二個參數的子類,則返回true,否則返回false。

用法: numpy.issubsctype(arg1, arg2)

參數:
arg1,arg2:dtype或dtype說明符。


Return :[布爾]布爾結果。

代碼1:

# Python program explaining 
# numpy.issubsctype() function 
  
# importing numpy 
import numpy as geek 
  
# selecting the argument 
  
arg1 = geek.array([1.0, 2.5, 3.9]) 
arg2 = geek.int
  
# output boolean value 
out_val = geek.issubsctype(arg1, arg2) 
print ("Is the first argument subclass of the second argument:", out_val) 
輸出:
Is the first argument subclass of the second argument: False

代碼2:

# Python program explaining 
# numpy.issubsctype() function 
  
# importing numpy 
import numpy as geek 
  
# selecting the argument 
  
arg1 = geek.array([1.0, 2.5, 3.9]) 
arg2 = geek.float
  
# output boolean value 
out_val = geek.issubsctype(arg1, arg2) 
print ("Is the first argument subclass of the second argument:", out_val) 
輸出:
Is the first argument subclass of the second argument: True


相關用法


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