To write a Python Program to perform Matrix Multiplication.

Pseudo Code

for i in range(Row_1):

    for j in range(Column_2):

        for k in range(Row_2):

            result[i][j] += M1[i][k] * M2[k][j]

Simulation Area

Input Field

Enter the value of Rows for matrix 1:

Enter the value of Columns for matrix 1:

Enter the value of Rows for matrix 2:

Enter the value of Columns for matrix 2: