标签: python algorithm
可能重复: How to generate all permutations of a list in Python
说我有一个范围,0-2。我想把这些数字洗牌并打印出所有可能性:
[0, 1, 2] [0, 2, 1] [1, 2, 0] [1, 0, 2] [2, 0, 1] [2, 1, 0]
我如何在Python中为0-N的任何范围执行此操作?
答案 0 :(得分:1)
itertools.permutations()