NumPy - Array Operations
The following code throws an error. What is the problem?
import numpy as np arr = np.array([1, 2, 3]) result = np.add(arr, 5, 10) print(result)
