vote up -4 vote down star
1

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)?

flag

7  
I know the answer but I'll give you a chance to post your solution first. – SilentGhost Jun 18 at 18:26
And the standoff continues..... – Randolpho Jun 18 at 18:27
I have a question but have to spell it backwards - ()tsil . – gimel Jun 18 at 18:29
1  
it will be )(tsil, dear gimel :) – SilentGhost Jun 18 at 18:30
S.Lott - Do you need more examples than the one I gave? Basically I want to convert a data structure containing lists and tuples to just lists (so the representation would have '(' and ')' converted to '[' and ']'. – Daryl Spitzer Jun 18 at 18:43
show 3 more comments

3 Answers

vote up 3 vote down check
def listit(t):
    return list(map(listit, t)) if isinstance(t, (list, tuple)) else t

The shortest solution I can imagine.

link|flag
map() always returns a list. list(map( ... )) should be map( ... ) – NicDumZ Jun 18 at 21:27
NicDumZ that's right if you python 2.x but in 3.x map() returns a generator. – DasIch Jun 19 at 0:04
and what's the difference from Christian's answer? – SilentGhost Jun 19 at 10:30
vote up 4 vote down

As a python newbie I would try this

def f(t):
    if type(t) == list or type(t) == tuple:
        return [f(i) for i in t]
    return t

t = (1,2,[3,(4,5)]) 
f(t)
>>> [1, 2, [3, [4, 5]]]

Or, if you like one liners:

def f(t):
    return [f(i) for i in t] if isinstance(t, (list, tuple)) else t
link|flag
4  
When you need to check an object's type, it's better to use the isinstance() function. As a bonus, you can even check for multiple types at once, like this: isinstance(t, (list, tuple)) – efotinis Jun 18 at 19:01
hasattr(t,'__iter__') perhaps – Jimmy Jun 18 at 19:16
vote up 0 vote down

This is what I had come up with, but I like the other's better.

def deep_list(x):
      """fully copies trees of tuples or lists to a tree of lists.
         deep_list( (1,2,(3,4)) ) returns [1,2,[3,4]]
         deep_list( (1,2,[3,(4,5)]) ) returns [1,2,[3,[4,5]]]"""
      if not ( type(x) == type( () ) or type(x) == type( [] ) ):
          return x
      return map(deep_list,x)

I see aztek's answer can be shortened to:

def deep_list(x):
     return map(deep_list, x) if isinstance(x, (list, tuple)) else x

Update: But now I see from DasIch's comment that this wouldn't work in Python 3.x since map() there returns a generator.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.