📜  Python| numpy ndarray.tolist()

📅  最后修改于: 2022-05-13 01:55:23.493000             🧑  作者: Mango

Python| numpy ndarray.tolist()

numpy.ndarray.tolist()方法的帮助下,我们可以得到使用ndarray.tolist ndarray.tolist()方法从 ndarray 转换而来的数据元素列表。

示例 #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]]