Javatpoint Logo
Javatpoint Logo

Python Program to Transpose a Matrix

In this tutorial, we will write a Python program to get the transpose of matrix and print the result in output.

Before writing the Python program, let's first look at the overview of the transpose of a matrix.

Transpose of a matrix

If you change the rows of a matrix with the column of the same matrix, it is known as the transpose of a matrix. It is denoted as X'. For example: The element at ith row and jth column in X will be placed at jth row and ith column in X'.

Example: Suppose we have given following matrix A:

At would be the transpose of above given matrix i.e., A[i][j] = At[j][i] and therefore At should be:

At = [5, 2, 4, 8]
        [4, 4, 7, 1]
        [3, 6, 9, 3]

Python program for transpose of a matrix

Now, we will write a Python program for the transpose of an input given matrix where we perform the operation as we have performed in the above-given example. To perform the transpose operation on the matrix, we will use the nested for loop method.

Let's understand the use and implementation of this method through the following example.

Example: Look at the following Python program:

Output:

The transpose of matrix A is: 
[5, 2, 4, 8]
[4, 4, 7, 1]
[3, 6, 9, 3]






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA