numpy.issubdtype()
La función se utiliza para determinar si el primer argumento es un código de tipo inferior/igual en la jerarquía de tipos del segundo argumento. Si el primer argumento es inferior o igual, devuelve verdadero; de lo contrario, devuelve falso.
Sintaxis: numpy.issubdtype(arg1, arg2)
Parámetros:
arg1, arg2: [dtype_like] dtype o string que representa un código de tipo.Retorno: [bool] resultado booleano.
Código #1:
# Python program explaining # numpy.issubdtype() function # importing numpy import numpy as geek # selecting the argument arg1 = geek.int64 arg2 = geek.int32 # output boolean value out_val = geek.issubdtype(arg1, arg2) print ("Is the first argument lower: ", out_val)
Producción :
Is the first argument lower: False
Código #2:
# Python program explaining # numpy.issubdtype() function # importing numpy import numpy as geek # selecting the argument arg1 ='S2' arg2 = geek.string_ # output boolean value out_val = geek.issubdtype(arg1, arg2) print ("Is the first argument lower: ", out_val)
Producción :
Is the first argument lower: 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