Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a list [2,3,4]. How do I find all possible sequence of elements in the list? So the output should be: [2,3,4] [2,4,3] [3,2,4] [3,4,2] [4,2,3] [4,3,2]

share|improve this question
possible duplicate of How to generate all permutations of a list in Python – Ken Redler Jan 30 '12 at 7:33

4 Answers

up vote 21 down vote accepted

You can do this easily using itertools.permutations():

>>> from itertools import permutations
>>> list(permutations([2, 3, 4]))
[(2, 3, 4), (2, 4, 3), (3, 2, 4), (3, 4, 2), (4, 2, 3), (4, 3, 2)]

And if for some reason you need lists instead of tuples:

>>> map(list, permutations([2, 3, 4]))
[[2, 3, 4], [2, 4, 3], [3, 2, 4], [3, 4, 2], [4, 2, 3], [4, 3, 2]]
share|improve this answer
3  
Hope the OPs list has all unique elements. – Droogans Jan 27 '12 at 22:34
1  

You are looking for permutations, something like this should work:

import itertools
itertools.permutations([2,3,4])
share|improve this answer

a start of a great lottery program except data would be formated as such

ist(permutations([2, 3, 4],[7,2,5],[8,1,4,9]))

the problem is that the first group is used to create numbers in first column only the secound is for 2 column and 3rd is for 3rd

the output will be a set of 3 numbers just that the permutation is different

share|improve this answer

Just so you know:

def unique_perms(elems):
    """returns non-duplicate permutations 
       if duplicate elements exist in `elems`
    """
    from itertools import permutations
    return list(set(permutations(elems)))

But if you're doing something like this:

print len(unique_perms(elems))

Then try this:

def fac(n):
    """n!"""
    if n == 1: return n
    return n * fac(n -1)

def unique_perm_count(elems)
    n = len(elems)
    return fac(2 * n) / fac(n) ** 2
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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