numpy.dtype.kind()
función determina el código de carácter identificando el tipo general de datos.
Sintaxis: numpy.dtype.kind(tipo)
Parámetros:
tipo: [dtype] El tipo de datos de entrada.
Devolver: Devuelve el código de carácter identificando el tipo general de datos.
Código #1:
# Python program explaining # numpy.dtype.kind() function # importing numpy as geek import numpy as geek dtype = geek.dtype('f4') gfg = dtype.kind print (gfg)
Producción :
f
Código #2:
# Python program explaining # numpy.dtype.kind() function # importing numpy as geek import numpy as geek dtype = geek.dtype('i4') gfg = dtype.kind print (gfg)
Producción :
i