python 排列组合之itertools

2019/7/13 22:00:16

本文主要是介绍python 排列组合之itertools,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

python 2.6 引入了itertools模块,使得排列组合的实现非常简单:
复制代码 代码如下:

import itertools 

有序排列:e.g., 4个数内选2个排列:
复制代码 代码如下:

>>> print list(itertools.permutations([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)]

无序组合:e.g.,4个数内选2个:
复制代码 代码如下:

>>> print list(itertools.combinations([1,2,3,4],2))
[(1, 2), (1, 3), (1, 4), (2, 3), (2, 4), (3, 4)]


这篇关于python 排列组合之itertools的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程