阅读量:0
在Python中,可以使用numpy库来读取矩阵的行和列数。下面是一个示例:
import numpy as np # 创建一个3x4的矩阵 matrix = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]]) # 读取矩阵的行数和列数 num_rows = matrix.shape[0] # 行数 num_cols = matrix.shape[1] # 列数 print("行数:", num_rows) print("列数:", num_cols)
输出结果为:
行数: 3 列数: 4
在上述示例中,使用numpy
库中的array
函数创建了一个3x4的矩阵。然后,通过shape
属性获取矩阵的行数和列数。