スポンサーリンク
カテゴリ:配列
Python バージョン:Python2.7
OSバージョン:Ubuntu 16.04.2
>>> c = np.array([[1], [100, 100]])
>>> print c[1]
[100, 100]
>>> print c[2]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: index 2 is out of bounds for axis 0 with size 2
スポンサーリンク