NumPy - Indexing and Slicing
Given the numpy array:
What will be the output?
import numpy as np arr = np.array([[10, 20, 30], [40, 50, 60], [70, 80, 90]]) print(arr[2, 1])
What will be the output?
