list to numpy array python code example
Example 1: 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 2: convert list to array python
import numpy as np
my_list = [2,4,6,8,10]
my_array = np.array(my_list)
print my_array
print type(my_array)
Example 3: np.array to list
>>> a = np.array([1, 2])
>>> list(a)
[1, 2]
>>> a.tolist()
[1, 2]
Example 4: convert list to numpy array
import numpy as np
npa = np.asarray(Lists, dtype=np.float32)
Example 5: convert list to nd array
numpy.asarray(arr, dtype=None, order=None)