Extrait pour une matrice inverse A en utilisant Numpy

if det(A) != 0
    A-1 = adj(A)/det(A)
else
    "Inverse doesn't exist"
Outrageous Ostrich