string array to float array python

43

convert all values in array into float -

import numpy as np
x = np.array(['1.1', '2.2', '3.3'])
y = x.astype(np.float)

Comments

Submit
0 Comments