如何在 Python 中生成列表的所有排列组合?
可以使用 itertools 软件包排列方法在 Python 中查找列表的所有排列。您可以如下使用它 −
示例
import itertools perms = list(itertools.permutations([1, 2, 3])) print(perms)
输出
将给出以下输出 −
[(1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1)]
广告
可以使用 itertools 软件包排列方法在 Python 中查找列表的所有排列。您可以如下使用它 −
import itertools perms = list(itertools.permutations([1, 2, 3])) print(perms)
将给出以下输出 −
[(1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1)]