「NumPy」多次元配列の行数と列数を調べる
書式
import numpy as np
np.array([[要素1, 要素2, xx], [要素11, 要素22, xx]])
shape プロパティを利用して、多次元配列の行、列を調べます。
使用例
import numpy as np arr = np.array([[11, 22, 33], [44, 55, 66]]) print(arr.shape)
実行結果
(2, 3)
Coding Changes the World
書式
import numpy as np
np.array([[要素1, 要素2, xx], [要素11, 要素22, xx]])
shape プロパティを利用して、多次元配列の行、列を調べます。
使用例
import numpy as np arr = np.array([[11, 22, 33], [44, 55, 66]]) print(arr.shape)
実行結果
(2, 3)