In [2]: import numpy as np In [4]: test_example = np.array([[1, 2, 3], [4.5, 5, 6]], int) test_example Out[4]: array([[1, 2, 3], [4, 5, 6]]) In [6]: test_example[0][0] Out[6]: 1 numpy에서는 [row, col]과 같이 지정해주어도 된다는 것을 확인할 수 있다. In [8]: test_example[0, 0] Out[8]: 1 In [10]: test_example[0, 0] = 10 test_example Out[10]: array([[10, 2, 3], [ 4, 5, 6]]) In [12]: test_example[0][0] = 5 test_example[0, ..