A two dimensional matrix is represented in Python as list of lists. Each inner list represent one row. Write a program with function transpose (m) that takes 2 dimensional matrix and returns it's transpose.
DON'T USE ZIP OR NumPy
: Run an iterator in each list correspondingly
: As the iterator reads from the list add it into another array(list of lists) parallely.
You will get transpose of the matrix.