numpy.issctype()
La función se utiliza para determinar si el objeto dado representa un tipo de datos escalar. Si el objeto dado representa un tipo de datos escalar, devuelve verdadero, de lo contrario, devuelve falso.
Sintaxis: numpy.issctype(rep)
Parámetros:
rep: cualquier entrada.Devuelve: [bool] Resultado booleano de verificar si rep es un tipo de escalar.
Código #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)
Producción :
Are integers scalar: True
Código #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)
Producción :
Is list scalar: False
Publicación traducida automáticamente
Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA