How can I convert "[(5, 2), (1,3), (4,5)]" into a list of tuples [(5, 2), (1,3), (4,5)]
I am using planetlab shell that does not support "import ast". So I am unable to use it.
|
How can I convert "[(5, 2), (1,3), (4,5)]" into a list of tuples [(5, 2), (1,3), (4,5)] I am using planetlab shell that does not support "import ast". So I am unable to use it. |
|||
| show 1 more comment |
|
If
However, you should really overthink your serialization format. If you're transferring data between Python applications and need the distinction between tuples and lists, use pickle. Otherwise, use JSON. |
||||
|
|
|
If you don't trust the source of the string enough to use
The code above is very straightforward and only works with 2-tuples of integers. If you want to parse more complex structures, you're better off with a proper parser. |
|||
|
|
ast.literal_eval– JBernardo Oct 28 '11 at 22:53evalwon't help you? – JBernardo Oct 28 '11 at 22:58