Write a Python Program to Transpose a Matrix and print result.
Topic: Write a Python Program to Transpose a Matrix and print result.
Solution
X = [[1,2], [4,5], [7,8]] Result = [[0,0,0], [0,0,0]] for i in range(len(X)): for j in range(len(X[0])): result[j][i] = X[i][j] for r in result: print(r)
List all Python Programs