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

  • برمجة بايثون

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

الأجوبة

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
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...