Python Itertools.Permutations()

时间:2011-11-13 18:27:34

标签: python python-3.x

为什么itertools.permutations()会返回每个排列的字符或数字列表,而不是只返回一个字符串?

例如:

>>> print([x for x in itertools.permutations('1234')])
>>> [('1', '2', '3', '4'), ('1', '2', '4', '3'), ('1', '3', '2', '4') ... ]

为什么不归还?

>>> ['1234', '1243', '1324' ... ]

3 个答案:

答案 0 :(得分:43)

itertools.permutations()只是这样工作。它需要一个任意的iterable作为参数,并且总是返回一个产生元组的迭代器。它不(也不应该)特殊情况字符串。要获得字符串列表,您可以自己加入元组:

list(map("".join, itertools.permutations('1234')))

答案 1 :(得分:3)

我没有尝试,但很可能应该工作

comb = itertools.permutations("1234",4)
for x in comb: 
  ''.join(x)    

答案 2 :(得分:1)

可以对字符串和列表进行查询,下面就是示例..

x = [1,2,3]

如果你需要排列上面的列表

print(list(itertools.permutations(x, 2)))

# the above code will give the below..
# [(1,2),(1,3),(2,1)(2,3),(3,1),(3,2)]