I have a python string in the following format:
"x1 y1\n x2 y2\n x3 y3\n ..."
I would like to transform this into a list points = [p1, p2, p3,...], where p1, p2 and p3 are [x1,y1], [x2,y2] and [x3,y3] etc.
Thanks
|
|
Think you can use the following:
|
|||||
|
|
|
obviously, many ways to do this. I would use list comprehension for its brevitiy.
|
|||||||
|
|
|||
|
|
|
Would this do?
Split on new lines, then for each line assume a space splits the values, create a list of points from that. |
|||
|
|