I have a tuple containing lists and more tuples. I need to convert it to nested lists with the same structure. For example, I want to convert (1,2,[3,(4,5)]) to [1,2,[3,[4,5]]].
How do I do this (in Python)?
|
1
|
|||||||||||||||
|
|
|
The shortest solution I can imagine. |
||||||
|
|
|
As a python newbie I would try this
Or, if you like one liners:
|
|||
|
|
This is what I had come up with, but I like the other's better.
I see aztek's answer can be shortened to:
Update: But now I see from DasIch's comment that this wouldn't work in Python 3.x since map() there returns a generator. |
|||
|
|