博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python itertools用法
阅读量:5749 次
发布时间:2019-06-18

本文共 2412 字,大约阅读时间需要 8 分钟。

Infinite Iterators:

Iterator Arguments Results Example
start, [step] start, start+step, start+2*step, ... count(10) --> 10 11 12 13 14 ...
p p0, p1, ... plast, p0, p1, ... cycle('ABCD') --> ...
elem [,n] elem, elem, elem, ... endlessly or up to n times repeat(10, 3) --> 10 10 10

Iterators terminating on the shortest input sequence:

Iterator Arguments Results Example
p, q, ... p0, p1, ... plast, q0, q1, ... chain('ABC', 'DEF') --> F
data, selectors (d[0] if s[0]), (d[1] if s[1]), ... compress('ABCDEF', [1,0,1,0,1,1]) --> F
pred, seq seq[n], seq[n+1], starting when pred fails dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 1
iterable[, keyfunc] sub-iterators grouped by value of keyfunc(v)  
pred, seq elements of seq where pred(elem) is true ifilter(lambda x: x%2, range(10)) --> 9
pred, seq elements of seq where pred(elem) is false ifilterfalse(lambda x: x%2, range(10)) --> 8
seq, [start,] stop [, step] elements from seq[start:stop:step] islice('ABCDEFG', 2, None) --> G
func, p, q, ... func(p0, q0), func(p1, q1), ... imap(pow, (2,3,10), (5,2,3)) --> 32 1000
func, seq func(*seq[0]), func(*seq[1]), ... starmap(pow, [(2,5), (3,2), (10,3)]) --> 32 1000
it, n it1, it2, ... itn splits one iterator into n  
pred, seq seq[0], seq[1], until pred fails takewhile(lambda x: x<5, [1,4,6,4,1]) --> 4
p, q, ... (p[0], q[0]), (p[1], q[1]), ... izip('ABCD', 'xy') --> Ax By
p, q, ... (p[0], q[0]), (p[1], q[1]), ... izip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-

Combinatoric generators:

Iterator Arguments Results
p, q, ... [repeat=1] cartesian product, equivalent to a nested for-loop
p[, r] r-length tuples, all possible orderings, no repeated elements
p, r r-length tuples, in sorted order, no repeated elements
p, r r-length tuples, in sorted order, with repeated elements
product('ABCD', repeat=2)   AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD
permutations('ABCD', 2)   AB AC AD BA BC BD CA CB CD DA DB DC
combinations('ABCD', 2)   AB AC AD BC BD CD
combinations_with_replacement('ABCD', 2)   AA AB AC AD BB BC BD CC CD DD

python源码:https://docs.python.org/2/library/itertools.html?module-itertools

应用举例:

解题思路:利用permutations函数可以直接得到序列列表,再用enumerate确定第1000000个是谁

for i, v in enumerate(permutations(range(10)), 1):    if i == 1000000:        print v        break #(2, 7, 8, 3, 9, 1, 5, 4, 6, 0)

 

 

转载于:https://www.cnblogs.com/miyisia/p/5489572.html

你可能感兴趣的文章
HTML+CSS+JavaScript(JS)
查看>>
Go语言学习笔记-将结构体编码为JSON格式
查看>>
Alpha冲刺&总结报告(12/12)(麻瓜制造者)
查看>>
iOS:CAEmitterLayer粒子效果
查看>>
iOS: Block的循环引用
查看>>
mysql实战02 | 日志系统:一条SQL更新语句是如何执行的?
查看>>
Xamarin.Android 引导页
查看>>
LINUX系统、磁盘与进程的相关命令
查看>>
测试九 赛后感受
查看>>
SQL2008R转SQL2005
查看>>
linux安装包操作
查看>>
完全数
查看>>
Federation+HA集群运维
查看>>
ECC椭圆曲线详解(有具体实例)
查看>>
my_mysql
查看>>
eclipse启动报错解决
查看>>
2.CURL命令
查看>>
结构力学
查看>>
sql代码段添加数据
查看>>
图书管理系统——测试与调试
查看>>