Python 标准库——itertools

一、chain / chain.from_iterable

Python 标准库——itertools_第1张图片


二、izip / imap / starmap

Python 标准库——itertools_第2张图片
Python 标准库——itertools_第3张图片


三、count / cycle / repeat

Python 标准库——itertools_第4张图片

Python 标准库——itertools_第5张图片


四、ifilter/ islice

Python 标准库——itertools_第6张图片


五、compress / dropwhile / takewhile

Python 标准库——itertools_第7张图片


六、groupby

Python 标准库——itertools_第8张图片


七、produce / permutations / combinations

Python 标准库——itertools_第9张图片


参考:

[1] https://docs.python.org/2.7/library/itertools.html#module-itertools
[2] https://pymotw.com/2/itertools/index.html

你可能感兴趣的:(python)