Exercise:NUMPY Slicing Arrays Try Again YesNo Next Exercise » Consider the following code: import numpy as np arr = np.array([1, 2, 3, 4, 5, 6, 7]) print(arr[:2]) What will be the printed result? [1] [1 2] [1 2 3] [3 4 5 6 7] Submit Answer »