SciPy - Linear Algebra (scipy.linalg)
You have a 3x3 matrix:
Using
M = np.array([[1, 2, 3], [0, 1, 4], [5, 6, 0]])
Using
scipy.linalg.det, what is the determinant of M? Choose the closest value rounded to 2 decimals.