Python Numpy ndarray.tolist()
在numpy.ndarray.tolist()方法的帮助下,我们可以得到由ndarray.tolist()方法转换而来的数据元素的列表。
语法: ndarray.tolist()
参数: none
返回:可能嵌套的数组元素列表。
例子#1 :
在这个例子中,我们可以看到,通过使用ndarray.tolist()方法,我们可以在ndarray中获得数据项的列表。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1, 2, 3, 4, 5])
# applying ndarray.tolist() method
print(gfg.tolist())
输出:
[1, 2, 3, 4, 5]
例子#2 :
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([[1, 2, 3, 4, 5],
[6, 5, 4, 3, 2]])
# applying ndarray.tolist() method
print(gfg.tolist())
输出:
[[1, 2, 3, 4, 5], [6, 5, 4, 3, 2]]