Answers for "how to convert array values to float in python"

1

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)
Posted by: Guest on March-06-2020

Code answers related to "how to convert array values to float in python"

Python Answers by Framework

Browse Popular Code Answers by Language