python list转为np
时间: 2023-09-30 08:06:29 浏览: 82
python将list转为matrix的方法
.array有两种方法:
1. 使用np.array()函数将列表转换为numpy数组。
```python
import numpy as np
my_list = [1, 2, 3, 4, 5]
my_array = np.array(my_list)
print(my_array)
```
输出结果:
```
[1 2 3 4 5]
```
2. 使用np.asarray()函数将列表转换为numpy数组。
```python
import numpy as np
my_list = [1, 2, 3, 4, 5]
my_array = np.asarray(my_list)
print(my_array)
```
输出结果:
```
[1 2 3 4 5]
```
阅读全文