numpy.ndarray.dtype()
función devuelve el tipo de datos de los elementos de la array.
Sintaxis: numpy.ndarray.dtype()
Parámetros: Ninguno
Retorno: [objeto numpy dtype] Retorna el tipo de datos de los elementos de la array.
Código #1:
# Python program explaining # numpy.ndarray.dtype() function # importing numpy as geek import numpy as geek arr = geek.array([[0, 1], [2, 3]]) gfg = arr.dtype print (gfg)
Producción :
int64
Código #2:
# Python program explaining # numpy.ndarray.dtype() function # importing numpy as geek import numpy as geek arr = geek.array([ 0., 1., 2.]) gfg = arr.dtype print (gfg)
Producción :
float64