numpyで空配列の末尾に行を追加して2次元配列を作る - Qiita
Arraypythonのarrayは.appendメソッドを使って配列を追加することができます。>>> arr = []>>> arr.append([1, 2, 3])>>> arr.ap…