“Comment ajouter deux matrices en utilisant la fonction dans Python” Réponses codées

Comment ajouter deux matrices en utilisant la fonction dans Python

def generate_matrix(noOfRows, x):
    print("Enter the values of matrix -", (x+1))
    matrix = []
    for i in range(noOfRows):
        row = []
        for j in range(noOfRows):
            row.append(int(input()))
        matrix.append(row)
    return matrix


noOfRows = int((input("How many rows = ")))
m1 = generate_matrix(noOfRows, 0)
m2 = generate_matrix(noOfRows, 1)

sum = []

for x in range(noOfRows):
    row = []
    for y in range(noOfRows):
        row.append(m1[x][y] + m2[x][y])
    sum.append(row)
print(sum)

Excited Earthworm

Comment ajouter deux matrices et la stocker une autre matrice en python '

matrix1 = []
matrix2 = []
sum = []

row = int(input("Enter the number of rows - "))
print("Give input of first matrix - ")
for i in range(row):
    rows = []
    for j in range(row):
        rows.append(int(input()))
    matrix1.append(rows)

print("Give input of second matrix - ")
for i in range(row):
    rows = []
    for j in range(row):
        rows.append(int(input()))
    matrix2.append(rows)

for i in range(row):
    rows = []
    for j in range(row):
        rows.append((matrix1[i][j] + matrix2[i][j]))
    sum.append(rows)

print(matrix1)
print(matrix2)
print(sum)
Excited Earthworm

Réponses similaires à “Comment ajouter deux matrices en utilisant la fonction dans Python”

Questions similaires à “Comment ajouter deux matrices en utilisant la fonction dans Python”

Plus de réponses similaires à “Comment ajouter deux matrices en utilisant la fonction dans Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code