Comment accéder à tous les éléments d'une matrice en python en utilisant pour Loop

numbers = [
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]
]

for i in range(3):
    for j in range(3):
        print(numbers[i][j])

Excited Earthworm