numpy.issctype()函数用于确定给定对象是否表示标量数据类型,如果给定对象表示标量数据类型,则返回true,否则返回false。
用法: numpy.issctype(rep)
参数:
rep :任何输入。
Return :[bool]检查rep是否为标量dtype的布尔结果。
代码1:
# Python program explaining
# numpy.issctype() function
# importing numpy
import numpy as geek
# Checking if integers are scalar type
rep = geek.int64
# output boolean value
out_val = geek.issctype(rep)
print ("Are integers scalar:", out_val)
输出:
Are integers scalar: True
代码2:
# Python program explaining
# numpy.issctype() function
# importing numpy
import numpy as geek
# Checking if list is scalar type
rep =[ 1, 4, 7]
# output boolean value
out_val = geek.issctype(rep)
print ("Is list scalar:", out_val)
输出:
Is list scalar: False
相关用法
- Python sum()用法及代码示例
- Python id()用法及代码示例
- Python now()用法及代码示例
- Python hex()用法及代码示例
- Python cmp()用法及代码示例
- Python int()用法及代码示例
- Python oct()用法及代码示例
- Python tell()用法及代码示例
- Python map()用法及代码示例
- Python dir()用法及代码示例
- Python ord()用法及代码示例
注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 Python | numpy.issctype() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。