NumPy - Array Manipulation
What will be the shape of the array after executing the following code?
import numpy as np arr = np.array([[[5], [6], [7]]]) squeezed_arr = np.squeeze(arr)
