Say I got a string:
s = '''1 2 3
4 5 6
7 8 9
'''
I want to turn each line of string s into a list of floating-point value, that is:
l = [[1.0 2.0 3.0], [4.0 5.0 6.0], [7.0 8.0 9.0]]
How can I do this in one line?
|
Say I got a string:
I want to turn each line of string
How can I do this in one line? |
||||
| show 3 more comments |
Note |
||||
|
|
|
This iterates through lines first, and then through strings and converts strings to floats. If you want the converstion to integers, change
|
|||
|
|
floattype), but then you describe a list of lists of integers. What exactly do you want? If it's supposed to be a list of lists, then what determines where one sublist ends and the next begins? – Karl Knechtel Jan 10 '12 at 11:13