码迷,mamicode.com
首页 > 编程语言 > 详细

Python 模块 itertools

时间:2015-03-16 22:50:57      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

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)]

 

count

原型:

count(start[, step])
返回:

start, start+step, start+2*step, ... (以start为首项, step为公差的等差数列)

example:

count(10):10, 11, 12, 13, .....

 

Python 模块 itertools

标签:

原文地址:http://www.cnblogs.com/fish7/p/4342858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!