Python numpy.issctype()
numpy.issctype()函数用于确定给定对象是否代表一个标量数据类型。如果给定对象代表一个标量数据类型,则返回true,否则返回false。
语法 : numpy.issctype(rep)
参数 :
rep :任何输入。
返回 :[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