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
相关用法
- Python oct()用法及代码示例
- Python ord()用法及代码示例
- Python id()用法及代码示例
- Python map()用法及代码示例
- Python sum()用法及代码示例
- Python cmp()用法及代码示例
- Python hex()用法及代码示例
- Python int()用法及代码示例
- Python dir()用法及代码示例
- Python now()用法及代码示例
- Python tell()用法及代码示例
- Python tuple()用法及代码示例
注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 Python | numpy.issubdtype() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。