Función numpy.dtype.kind() – Python

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

Publicación traducida automáticamente

Artículo escrito por sanjoy_62 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *