In [1]:
import numpy as np

In [2]:
arr = np.array([[0, 1], [2, 3]])

In [3]:
det = np.linalg.det(arr)
print(det)


-2.0