import numpy as np
X = np.array([1, 7, 13, 105])
print("Original array:")
print(X)
print("Size of the memory occupied by the said array:")
print("%d bytes" % (X.size * X.itemsize))
Sample Output:
Original array:
[ 1 7 13 105]
Size of the memory occupied by the said array:
32 byte
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer