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


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