tolist函数在Python中的用法
时间: 2024-05-01 16:16:13 浏览: 76
详解python中list的使用
tolist函数是Numpy数组的一个方法,用于将数组转换为列表形式。使用方法为:
``` python
import numpy as np
# 创建一个二维数组
a = np.array([[1, 2], [3, 4]])
# 将数组转换为列表形式
b = a.tolist()
print(b) # [[1, 2], [3, 4]]
```
阅读全文