NumPy - Array Manipulation
What is the shape of the array after executing the following code?
import numpy as np arr = np.array([1, 2, 3]) new_arr = np.expand_dims(arr, axis=1)
