NumPy - Array Manipulation
Identify the error in this code snippet:
import numpy as np arr = np.array([[1, 2], [3, 4]]) transposed = arr.transpose(axes=(1, 0, 2)) print(transposed)
