您的位置:首页 > 编程语言 > Python开发

python的排列组合

2013-01-08 17:12 225 查看
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)]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: