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


Python numpy.issctype()用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 Python | numpy.issctype() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。