“Cómo agregar dos matriz usando la función en Python” Código de respuesta

Cómo agregar dos matriz usando la función en 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

Cómo agregar dos matriz y guárdelo otra matriz 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

Respuestas similares a “Cómo agregar dos matriz usando la función en Python”

Preguntas similares a “Cómo agregar dos matriz usando la función en Python”

Más respuestas relacionadas con “Cómo agregar dos matriz usando la función en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código