Compilador de Python Online (Editor / Interpretador)
Escreva, execute e compartilhe o seu código Python instantaneamente com o Compilador de Python Online da Asimov Academy.
matriz = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
for (x, y, z) in matriz:
print(f"x: {x}, y: {y}, z: {z}")