Finding Eigenvalues

matrix = np.array([ 
									[1,2], [3,4] 
									])
# get the eigenvalues
evals = np.linalg.eig(matrix)[0]