python查看数组纬度代码
时间: 2023-09-02 22:08:47 浏览: 79
python遗传算法旅行商代码.zip
你可以使用NumPy库中的shape属性来查看数组的维度,例如:
```python
import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6]])
print(arr.shape)
```
输出结果为:
```
(2, 3)
```
其中,元组中的第一个数字表示数组的行数,第二个数字表示数组的列数。
阅读全文