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


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


numpy.issubdtype()函數用於從第二個參數確定第一個參數是否為類型層次結構中較低/相等的類型代碼。如果第一個參數較低或相等,則返回true,否則返回false。

用法: numpy.issubdtype(arg1, arg2)

參數:
arg1,arg2:[dtype_like] dtype或表示類型代碼的字符串。


Return :[布爾]布爾結果。

代碼1:

# Python program explaining 
# numpy.issubdtype() function 
  
# importing numpy 
import numpy as geek 
  
# selecting the argument 
  
arg1 = geek.int64 
arg2 = geek.int32 
  
# output boolean value 
out_val = geek.issubdtype(arg1, arg2) 
print ("Is the first argument lower:", out_val) 
輸出:
Is the first argument lower: False

代碼2:

# Python program explaining 
# numpy.issubdtype() function 
  
# importing numpy 
import numpy as geek 
  
# selecting the argument 
  
arg1 ='S2'
arg2 = geek.string_ 
  
# output boolean value 
out_val = geek.issubdtype(arg1, arg2) 
print ("Is the first argument lower:", out_val) 
輸出:
Is the first argument lower: True


相關用法


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