Is possible to construct a NumPy array from a python list?
maybe:
import numpy as np a=[[1,1],[2,2]] b=np.asarray(a) print(type(b))
output: