python求矩阵行数
时间: 2023-07-17 16:07:35 浏览: 88
python如何进行矩阵运算
要求矩阵的行数,可以使用numpy库中的shape属性。下面是一个示例代码:
```python
import numpy as np
matrix = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
rows = matrix.shape[0]
print("矩阵的行数为:", rows)
```
输出结果会显示矩阵的行数。在这个示例中,矩阵matrix有3行,所以输出结果为3。
阅读全文