NumPy - Array Manipulation
What is the output shape of the following code?
import numpy as np arr = np.zeros((3, 4, 5)) transposed = arr.transpose(1, 0, 2) print(transposed.shape)
