NumPy - Indexing and Slicing
What is the issue with this code snippet when slicing a NumPy array?
import numpy as np arr = np.array([[7,8,9],[10,11,12]]) slice = arr[2:4, 1:3]
