Q:

Write a NumPy program to create an array with the values 1, 7, 13, 105 and determine the size of the memory occupied by the array

0

Write a NumPy program to create an array with the values 1, 7, 13, 105 and determine the size of the memory occupied by the array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now