how to convert numpy array to list in python 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: convert list to numpy array
import numpy as np
npa = np.asarray(Lists, dtype=np.float32)