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