选择numpy数组的第12列
时间: 2023-05-17 10:05:36 浏览: 117
numpy中索引和切片详解
你可以使用以下代码来选择numpy数组的第12列:
```python
import numpy as np
# 创建一个随机的3x15的numpy数组
arr = np.random.rand(3, 15)
# 选择第12列
col_12 = arr[:, 11]
print(col_12)
```
这将输出numpy数组的第12列。
阅读全文
numpy中索引和切片详解