Código de ejemplo: # Python 3.ximportnumpyasnp matrix=np.array([[7,5],[2,4]])det=np.linalg.det(matrix)print("Determinant of the matrix is:",round(det)) Producción : #Python 3.xDeterminant of the matrix is: 18 Determinante de una matriz3x3en Python ...