当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。