python 列表转数组
时间: 2023-11-18 20:05:09 浏览: 97
Python列表中随机取值
5星 · 资源好评率100%
Python 中没有数组这个数据类型,但是可以使用 NumPy 库来创建数组。如果你想将 Python 中的列表转换为 NumPy 数组,可以使用 `numpy.array()` 函数。具体实现如下:
```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]
```
阅读全文