matriz = [[1,2,3],
[4,5,6],
[7,8,9]
]
#print(matriz[0])
#print(matriz[0][1])
for row in matriz:
<h1>print(row)</h1>for column in row:
print(column)
Curso de Fundamentos de Python
COMPARTE ESTE ARTÍCULO Y MUESTRA LO QUE APRENDISTE
0 Comentarios
para escribir tu comentario

