Convert string to array of floats

Cédric Lucantis omer at no-log.org
Thu Jun 19 12:00:07 EDT 2008


Le Thursday 19 June 2008 17:12:08 Jonno, vous avez écrit :
> Hi,
>
> I'm very new to programming and python.
>
> I need to convert a string like this:
> '               0.906366     2.276152       0.013369    80.773141
> 0.002836  -107.335197       0.011462    86.846290    \n'
> to an array of floats.
>

string = '0.906366     2.276152       0.013369    80.773141'
array = [float(s) for s in string.split()]

-- 
Cédric Lucantis



More information about the Python-list mailing list