Code:
from sympy import Matrix Matrix([[1, 1], [1, 1]]).row_insert(-1, Matrix([[2,2]]))
Expected result:
Matrix([ [1, 1], [1, 1],