将列表转换为行数为1的二维数组
时间: 2024-05-12 15:20:07 浏览: 48
python将三维数组展开成二维数组的实现
可以使用numpy库中的reshape方法将列表转换为行数为1的二维数组。
示例代码:
```python
import numpy as np
my_list = [1, 2, 3, 4, 5, 6]
my_array = np.array(my_list).reshape(1, -1)
print(my_array)
```
输出结果:
```
[[1 2 3 4 5 6]]
```
其中,reshape方法中的参数-1表示自动计算列数,因此行数为1。
阅读全文