Learning Python 11

python

Two Dimensional List

Link to my github (This is learning code.)

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

print(number_grid)

for row in number_grid:
    for col in row:
        print(col)

Link To Mike Dane YouTuBe