game = [[2, 2, 3],
[1, 1, 3],
[0, 0, 3]]
vertical = []
for row in game:
print(vertical.append(row[2]))
I try to understand the append function by print it out. The output is kind of confusing to me. Is that because I did not add any value to the vertical variable?