In [1]: import numpy as np In [2]: a = np.arange(12) In [3]: np.append(a, [6, 4, 2]) # aの末尾に要素を追加。 Out[3]: array([ 0, 1, 2, 3, 4, ...
確定! 回上一頁