from sympy import *
= Matrix([[3,5],[2,6]])
A '''
The .eigenvects() method returns a list of tuples containing:
1. an eigenvalue,
2. its multiplicity (how many times it is a root), and
3. a list of corresponding eigenvectors.
'''
pretty_print(A.eigenvects())