convert a numpy array to list code example
Example 1: ndarray to list
a = np.array([1, 2])
a.tolist()
Example 2: numpy list to array
import numpy
lst = [1, 7, 0, 6, 2, 5, 6]
arr = numpy.array(lst)
print ("List: ", lst)
print ("Array: ", arr)
Example 3: python numpy array to list
numpy_array.tolist()
your_array = np.array([[1, 2, 3], [4, 5, 6]])
your_array
--> array([[1, 2, 3],
[4, 5, 6]])
your_array.tolist()
--> [[1, 2, 3], [4, 5, 6]]
Example 4: list of list to numpy array
>>> lists = [[1, 2], [3, 4]]
>>> np.array(lists)
array([[1, 2],
[3, 4]])