Examples
from array:
[ 8.85145037e+02 -1.24294207e+02 -1.42830519e+01 -8.62776672e+01
-8.66725361e+01 -7.96623643e+00 1.23582408e+01 2.84470918e+01 ]
to list:
[[885.1450370958278],[-124.29420748608811],[-14.283051875003691],[-86.27766716541419],[-86.67253605552324],[-7.966236427390702],[12.358240800052027],[28.447091751843175]]
When using tolist () the result is:
[885.1450370958278, -124.29420748608811, -14.283051875003691, -86.27766716541419, -86.67253605552324, -7.966236427390702, 12.358240800052027, 28.447091751843175]
Thanks in advance