Pythonでは、NumPy配列のshape属性は、配列の行と列の数を表します。shape属性はタプルで、最初の要素は行の数を表し、2番目の要素は列の数を表します。
以下に、shape属性の使用例を示します。
1 2 3 4 | import numpy as np a = np.array([[1, 2, 3], [4, 5, 6]]) print(a.shape) # Output: (2, 3) |
numpyをnpとしてインポートする
a = np.array([[1, 2, 3], [4, 5, 6]])
print(a.shape) # 出力。(2, 3)