numpy.issubsctype()
La función se utiliza para determinar si el primer argumento es una subclase del segundo argumento. Si el primer argumento es una subclase del segundo argumento, devuelve verdadero; de lo contrario, devuelve falso.
Sintaxis: numpy.issubsctype(arg1, arg2)
Parámetros:
arg1, arg2: dtype o especificador de dtype.Retorno: [bool] resultado booleano.
Código #1:
# Python program explaining # numpy.issubsctype() function # importing numpy import numpy as geek # selecting the argument arg1 = geek.array([1.0, 2.5, 3.9]) arg2 = geek.int # output boolean value out_val = geek.issubsctype(arg1, arg2) print ("Is the first argument subclass of the second argument: ", out_val)
Producción :
Is the first argument subclass of the second argument: False
Código #2:
# Python program explaining # numpy.issubsctype() function # importing numpy import numpy as geek # selecting the argument arg1 = geek.array([1.0, 2.5, 3.9]) arg2 = geek.float # output boolean value out_val = geek.issubsctype(arg1, arg2) print ("Is the first argument subclass of the second argument: ", out_val)
Producción :
Is the first argument subclass of the second argument: True
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