SciPy - Linear Algebra (scipy.linalg)
What is the output of the following code?
import numpy as np from scipy.linalg import norm A = np.array([[3, 4], [0, 0]]) n = norm(A, ord=2)
