NumPy - Array Manipulation
What is the output shape of the following code?
import numpy as np arr = np.arange(12) new_arr = arr.reshape(3, 4) print(new_arr.shape)
