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
- برمجة بايثون
- 2021-09-10
- mhanasmh00489829403
الأجوبة
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
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال