• 코드:
​x
 
1
matrix = [[1, 2, 3], ["하나", "둘", "셋"]]
2
​
3
print(matrix[0])
4
print(matrix[0][0])
5
print(matrix[1][2])
6
​
표준입력 & 실행옵션