Write a NumPy program to extract all the elements of the second and third columns from a given (4x4) array

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

Write a NumPy program to extract all the elements of the second and third columns from a given (4x4) array.

 

الأجوبة

import numpy as np
arra_data = np.arange(0,16).reshape((4, 4))
print("Original array:")
print(arra_data)
print("\nExtracted data: All the elements of the second and third columns")
print(arra_data[:,[1,2]])

Sample Output:

Original array:
[[ 0  1  2  3]
 [ 4  5  6  7]
 [ 8  9 10 11]
 [12 13 14 15]]

Extracted data: All the elements of the second and third columns
[[ 1  2]
 [ 5  6]
 [ 9 10]
 [13 14]]
هل كان المحتوى مفيد؟

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

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