Python/개념학습
Meaning of stack[-1][0]
수e
2022. 8. 24. 23:00
x = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
print(x[-1][0])
# output
7