Write a NumPy program to extract second and third elements of the second and third rows from a given (4x4) array
- برمجة بايثون
- 2021-09-13
- mhanasmh00489829403
الأجوبة
import numpy as np
arra_data = np.arange(0,16).reshape((4, 4))
print("Original array:")
print(arra_data)
print("\nExtracted data: Second and third elements of the second and third rows")
print(arra_data[1:3, 1:3])
Sample Output:
Original array: [[ 0 1 2 3] [ 4 5 6 7] [ 8 9 10 11] [12 13 14 15]] Extracted data: Second and third elements of the second and third rows [[ 5 6] [ 9 10]]
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال