I have a script which reads a text file, and pulls decimal numbers out of it as strings, and places them into a list.
So I have this list: ['0.49', '0.54', '0.54', '0.54', '0.54', '0.54', '0.55', '0.54', '0.54', '0.54', '0.55', '0.55', '0.55', '0.54', '0.55', '0.55', '0.54', '0.55', '0.55', '0.54']
How do I convert each value in the list from a string to a floating point.
I have tried
for item in list:
float(item)
But this doesn't seem to work for me...
