python 数组转化为列表
时间: 2024-01-21 09:03:13 浏览: 80
python 实现列表转字符串
Python中的数组可以使用numpy库中的ndarray来表示,而列表则是使用list类型。 如果要将一个numpy数组转化为Python列表,可以使用tolist()方法。
下面是示例代码:
```python
import numpy as np
#创建一个numpy数组
arr = np.array([1,2,3,4,5])
#转化为Python列表
lst = arr.tolist()
print(lst)
```
输出:
```
[1, 2, 3, 4, 5]
```
阅读全文