Is possible to construct a NumPy array from a python list?
I suppose, you mean converting a list into a numpy array? Then,
import numpy as np # b is some list, then ... a = np.array(b).reshape(lengthDim0, lengthDim1);
gives you a as an array of list b in the shape given in reshape.