I have a script where I need to convert a list to a numpy array, but I'm having this weird problem and I don't know how to solve it.
>>> a = [6.27575197488659, 28.91240527183621, -0.005173032150138807]
>>> import numpy as np
>>> np.array(a)
array([ 6.27575197e+00, 2.89124053e+01, -5.17303215e-03])
The array should be the same as the list and you would safe my day by helping me.