Answers for "convert string array to float in python"

4

python string list to float

[float(i) for i in lst]
Posted by: Guest on August-17-2020
0

string array to float array python

import numpy as np
x = np.array(['1.1', '2.2', '3.3'])
y = x.astype(np.float)
print(y) # Output : [1.1, 2.2, 3.3]
Posted by: Guest on July-16-2021

Code answers related to "convert string array to float in python"

Python Answers by Framework

Browse Popular Code Answers by Language