Q:

Write a NumPy program to extract first element of the second row and fourth element of fourth row from a given (4x4) array

0

Write a NumPy program to extract first element of the second row and fourth element of fourth row from a given (4x4) array.

All Answers

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

import numpy as np
arra_data = np.arange(0,16).reshape((4, 4))
print("Original array:")
print(arra_data)
print("\nExtracted data: First element of the second row and fourth element of fourth row  ")
print(arra_data[[1,3], [0,3]])

Sample Output:

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

Extracted data: First element of the second row and fourth element of fourth row  
[ 4 15]

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