欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > python >内容正文

python

python numpy数组转换成列表方法 object.tolist()函数

发布时间:2025/3/19 python 32 豆豆
生活随笔 收集整理的这篇文章主要介绍了 python numpy数组转换成列表方法 object.tolist()函数 小编觉得挺不错的,现在分享给大家,帮大家做个参考.
a.tolist()Return the array as a (possibly nested) list. 将数组作为(可能是嵌套的)列表返回。Return a copy of the array data as a (nested) Python list. Data items are converted to the nearest compatible Python type. 返回数组数据的副本作为(嵌套的)Python列表。 数据项将转换为最兼容的Python类型。Parameters ---------- none 没有参数Returns ------- y : listThe possibly nested list of array elements.数组元素的可能嵌套列表。Notes ----- The array may be recreated, ``a = np.array(a.tolist())``. 可以使用以下方法重新创建数组``a = np.array(a.tolist())''。Examples -------- >>> a = np.array([1, 2]) >>> a.tolist() [1, 2] >>> a = np.array([[1, 2], [3, 4]]) >>> list(a) [array([1, 2]), array([3, 4])] >>> a.tolist() [[1, 2], [3, 4]] Type: builtin_function_or_method

参考文章:numpy列表与数组的相互转换

总结

以上是生活随笔为你收集整理的python numpy数组转换成列表方法 object.tolist()函数的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。