SciPy - Linear Algebra (scipy.linalg)
What will be the output of this code?
import numpy as np from scipy.linalg import det B = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) print(round(det(B), 2))
