numpy.typename()
función devuelve una descripción para el código de tipo de datos dado.
Sintaxis: numpy.typename(char)
Parámetros:
char: [str] Código de tipo de datos.
Retorno: [str] Descripción del código de tipo de datos de entrada.
Código #1:
# Python program explaining # numpy.typename() function # importing numpy as geek import numpy as geek typechars = ['?', 'O', 'b', 'd', 'g', 'f', 'i', 'h', 'l', 'q'] for typechar in typechars: print(typechar, ' : ', geek.typename(typechar))
Producción :
? : bool O : object b : signed char d : double precision g : long precision f : single precision i : integer h : short l : long integer q : long long integer
Código #2:
# Python program explaining # numpy.typename() function # importing numpy as geek import numpy as geek typechars = ['S1', 'B', 'D', 'G', 'F', 'I', 'H', 'L', 'Q', 'S', 'U', 'V'] for typechar in typechars: print(typechar, ' : ', geek.typename(typechar))
Producción :
S1 : character B : unsigned char D : complex double precision G : complex long double precision F : complex single precision I : unsigned integer H : unsigned short L : unsigned long integer Q : unsigned long long integer S : string U : unicode V : void