I am somewhat new to python and I am using python modules in another program (ABAQUS). The question, however, is completely python related.
In the program, I need to
numpy.ndarray.tolist will do it:
a.tolist()
If your data is a pandas series you can call their tolist wrapper with the same result.