如何将 NumPy 数组转换为 Python 列表?
您可以使用该方法将 NumPy 数组转换为 Python 列表tolist()。操作方法如下:
tolist()
import numpy as np # Example NumPy array array = np.array([1, 2, 3, 4, 5]) # Convert to Python list python_list = array.tolist() print(python_list)
在此示例中,该tolist()方法将 NumPy 数组转换为标准 Python 列表。