Python numpy.issctype()

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程