I am quite new to programing so I hope this question is simple enough.
I need to know how to convert a string input of numbers separated by spaces on a single line:
5.2 5.6 5.3
and convert this to a float list
lsit = [5.2,5.6,5.3]
How can this be done?
lsitor is that a typo in the question? And if it was mant to belistthen I should also add that you shouldn't uselistas a variable name as it hides a built-in with the same name. – Mark Byers Oct 23 '10 at 14:54