Python中怎样使用shape计算矩阵的行和列?
你得先安装numpy库,矩阵(ndarray)的shape属性可以获取矩阵的形状(例如二维数组的行列),获取的结果是一个元组,因此相关代码如下:
import numpy as npx = np.array([[1,2,5],[2,3,5],[3,4,5],[2,3,6]]
)# 输出数组的行和列数print x.shape # (4, 3)# 只输出行数print x.shape[0] # 4# 只输出列数print x.shape[1] # 3