vote up 0 vote down star

I have a list of tuples, e.g:

A=[(1,2,3), (3,5,7,9), (7)]

and want to generate all permutations with one item from each tuple.

1,3,7
1,5,7
1,7,7
...
3,9,7

I can have any number of tuples and a tuple can have any number of elements. And I can't use itertools.product() because python 2.5.

flag
Note that you will need to redefine your A. When you say A=[(1,2,3),(3,5,7,9),(7)] the (7) at the end is evaluated as an integer, not a tuple. Therefore it's not iterable, and product(*A) will throw a TypeError. If you say A=(1,2,3),(3,5,7,9),(7,)] then product(*A) will work. – ~unutbu Nov 5 at 15:57
Ok, I see, but this was a too simple example. I have A as a list of lists of 3-number tuples. But I want to remove the outer list and get A = lists of 3-number tuples. How do I do that? Better to make this a new beginner python question i think. – lgwest Nov 5 at 22:23

2 Answers

vote up 2 vote down

The itertools documentation contains full code showing what each function is equivalent to. The product implementation is here.

link|flag
Thanks, I was to fast to ask I think. – lgwest Nov 5 at 22:25
vote up 6 vote down

docs of itertools.product have an example of how to implement it in py2.5:

def product(*args, **kwds):
    # product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
    # product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111
    pools = map(tuple, args) * kwds.get('repeat', 1)
    result = [[]]
    for pool in pools:
        result = [x+[y] for x in result for y in pool]
    for prod in result:
        yield tuple(prod)
link|flag
Aside from that (*args, repeat=1) doesn't work in Python 2.5... – ephemient Nov 5 at 15:35
fixed that, I've accidentally copied the example from py3.1 docs. – SilentGhost Nov 5 at 15:40

Your Answer

Get an OpenID
or

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