so I have this matrix:
matrix = [ [1, 2, 3],
           [4, 5, 6],
           [7, 8, 9]
         ]
And I want to remove the last row, so it return me something like this:
matrix = [ [1, 2, 3],
           [4, 5, 6]
         ]
P.S. I cant use Numpy.
 
    