スポンサーリンク
カテゴリ:配列
Python バージョン:Python2.7
OSバージョン:Ubuntu 16.04.2
>>> x = [0,0,0,0,0,0,0,0,0,0]
>>> y = [0,0,0,0,0,0,0,0,0,0]
>>> z = [0,0,0,0,0,0,0,0,0,0,0]
>>>
>>> a = np.array((x, y, z), dtype=int)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: setting an array element with a sequence.
スポンサーリンク