python 排列组合操作代码
python3包含了一个itertools模块,使得排列组合的实现非常简单,下面的代码分别实现了排列和组合
""" 皮蛋编程(https://www.pidancode.com) 创建日期:2022/4/2 功能描述:python 排列组合操作代码 """ import itertools # 排列:e.g., 4个数内选2个排列 print(list(itertools.permutations([1, 2, 3, 4], 2))) # 组合:e.g.,4个数内选2个组合 print(list(itertools.combinations([1, 2, 3, 4], 2)))
输出:
[(1, 2), (1, 3), (1, 4), (2, 1), (2, 3), (2, 4), (3, 1), (3, 2), (3, 4), (4, 1), (4, 2), (4, 3)]
[(1, 2), (1, 3), (1, 4), (2, 3), (2, 4), (3, 4)]
相关文章