En NumPy podemos encontrar la longitud de un elemento de array en un byte con la ayuda de itemsize. Devolverá la longitud de la array en entero. Y en el numpy para calcular el total de bytes consumidos por los elementos con la ayuda de nbytes.
Sintaxis: array.itemsize
Retorno: devolverá la longitud (int) de la array en bytes.
Sintaxis: array.nbytes
Retorno: Devolverá el total de bytes consumidos por los elementos.
Ejemplo 1:
Python
import numpy as np array = np.array([1,3,5], dtype=np.float64) # Size of the array print(array.size) # Length of one array element in bytes, print( array.itemsize) # Total bytes consumed by the elements # of the array print(array.nbytes)
Producción:
3 8 24
Ejemplo 2:
Python
import numpy as np array = np.array([20, 34, 56, 78, 1, 9], dtype=np.float64) # Size of the array print(array.size) # Length of one array element in bytes, print(array.itemsize) # Total bytes consumed by the elements # of the array print(array.nbytes)
Producción:
6 8 48
Publicación traducida automáticamente
Artículo escrito por vipinyadav15799 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA