How can i store a list within a numpy 2d array?
import numpy
A = numpy.empty([5,5], dtype=**?**)
What should be the dtype for a variable list kind of thing here? or Is there a different way to implement this, which I strongly feel would be the case.