python size of np array code example
Example 1: numpy get array size
myArray.shape
print(a_1d.shape)
print(type(a_1d.shape))
print(a_2d.shape)
print(a_3d.shape)
Example 2: dimensions of np array python
>>> x = np.zeros((3, 5, 2), dtype=np.complex128)
>>> x.size
30
>>> np.prod(x.shape)
30
Example 3: python numpy array size of n
numpy.array([0] * n)
numpy.array([0] * n, dtype = '<type>')
Example 4: numpy number of elements
import numpy as np
x = np.array([1,2,3], dtype=np.float64)
print("Size of the array: ", x.size)
print("Length of one array element in bytes: ", x.itemsize)
print("Total bytes consumed by the elements of the array: ", x.nbytes)