NumPy - Array Manipulation
What is the issue with this code snippet?
import numpy as np arr = np.array([5, 10, 15]) new_arr = arr[np.newaxis:] print(new_arr.shape)
