blob: b0d0a8c8c8ccd7f346f403ec6ab9eef9798eb2a8 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`itertools` --- Functions creating iterators for efficient looping
2=======================================================================
3
4.. module:: itertools
Raymond Hettinger30c73622010-12-01 23:45:20 +00005 :synopsis: Functions creating iterators for efficient looping.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Georg Brandl116aa622007-08-15 14:28:22 +00007.. moduleauthor:: Raymond Hettinger <python@rcn.com>
8.. sectionauthor:: Raymond Hettinger <python@rcn.com>
9
Christian Heimesfe337bf2008-03-23 21:54:12 +000010.. testsetup::
11
Raymond Hettinger30c73622010-12-01 23:45:20 +000012 from itertools import *
Christian Heimesfe337bf2008-03-23 21:54:12 +000013
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040014--------------
Christian Heimesfe337bf2008-03-23 21:54:12 +000015
Raymond Hettingerf76b9202009-02-17 20:00:59 +000016This module implements a number of :term:`iterator` building blocks inspired
17by constructs from APL, Haskell, and SML. Each has been recast in a form
18suitable for Python.
Georg Brandl116aa622007-08-15 14:28:22 +000019
20The module standardizes a core set of fast, memory efficient tools that are
Raymond Hettingerf76b9202009-02-17 20:00:59 +000021useful by themselves or in combination. Together, they form an "iterator
22algebra" making it possible to construct specialized tools succinctly and
23efficiently in pure Python.
Georg Brandl116aa622007-08-15 14:28:22 +000024
25For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a
Ezio Melottib6605992010-01-21 20:57:24 +000026sequence ``f(0), f(1), ...``. The same effect can be achieved in Python
Raymond Hettingera6c60372008-03-13 01:26:19 +000027by combining :func:`map` and :func:`count` to form ``map(f, count())``.
Georg Brandl116aa622007-08-15 14:28:22 +000028
Raymond Hettinger2c109ab2009-03-12 00:29:44 +000029These tools and their built-in counterparts also work well with the high-speed
30functions in the :mod:`operator` module. For example, the multiplication
31operator can be mapped across two vectors to form an efficient dot-product:
32``sum(map(operator.mul, vector1, vector2))``.
Georg Brandl116aa622007-08-15 14:28:22 +000033
Georg Brandl116aa622007-08-15 14:28:22 +000034
Raymond Hettingerf76b9202009-02-17 20:00:59 +000035**Infinite Iterators:**
Georg Brandl116aa622007-08-15 14:28:22 +000036
Raymond Hettinger5bfd8ce2009-04-10 19:02:36 +000037================== ================= ================================================= =========================================
38Iterator Arguments Results Example
39================== ================= ================================================= =========================================
40:func:`count` start, [step] start, start+step, start+2*step, ... ``count(10) --> 10 11 12 13 14 ...``
41:func:`cycle` p p0, p1, ... plast, p0, p1, ... ``cycle('ABCD') --> A B C D A B C D ...``
42:func:`repeat` elem [,n] elem, elem, elem, ... endlessly or up to n times ``repeat(10, 3) --> 10 10 10``
43================== ================= ================================================= =========================================
Georg Brandl116aa622007-08-15 14:28:22 +000044
Raymond Hettingerf76b9202009-02-17 20:00:59 +000045**Iterators terminating on the shortest input sequence:**
46
Benjamin Peterson2989f582014-01-16 10:10:13 -050047============================ ============================ ================================================= =============================================================
48Iterator Arguments Results Example
49============================ ============================ ================================================= =============================================================
50:func:`accumulate` p [,func] p0, p0+p1, p0+p1+p2, ... ``accumulate([1,2,3,4,5]) --> 1 3 6 10 15``
51:func:`chain` p, q, ... p0, p1, ... plast, q0, q1, ... ``chain('ABC', 'DEF') --> A B C D E F``
52:func:`chain.from_iterable` iterable p0, p1, ... plast, q0, q1, ... ``chain.from_iterable(['ABC', 'DEF']) --> A B C D E F``
53:func:`compress` data, selectors (d[0] if s[0]), (d[1] if s[1]), ... ``compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F``
54:func:`dropwhile` pred, seq seq[n], seq[n+1], starting when pred fails ``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1``
55:func:`filterfalse` pred, seq elements of seq where pred(elem) is false ``filterfalse(lambda x: x%2, range(10)) --> 0 2 4 6 8``
56:func:`groupby` iterable[, keyfunc] sub-iterators grouped by value of keyfunc(v)
57:func:`islice` seq, [start,] stop [, step] elements from seq[start:stop:step] ``islice('ABCDEFG', 2, None) --> C D E F G``
58:func:`starmap` func, seq func(\*seq[0]), func(\*seq[1]), ... ``starmap(pow, [(2,5), (3,2), (10,3)]) --> 32 9 1000``
59:func:`takewhile` pred, seq seq[0], seq[1], until pred fails ``takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4``
60:func:`tee` it, n it1, it2, ... itn splits one iterator into n
61:func:`zip_longest` p, q, ... (p[0], q[0]), (p[1], q[1]), ... ``zip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-``
62============================ ============================ ================================================= =============================================================
Raymond Hettingerf76b9202009-02-17 20:00:59 +000063
64**Combinatoric generators:**
65
Raymond Hettinger7f587cd2009-04-10 19:43:50 +000066============================================== ==================== =============================================================
67Iterator Arguments Results
68============================================== ==================== =============================================================
69:func:`product` p, q, ... [repeat=1] cartesian product, equivalent to a nested for-loop
70:func:`permutations` p[, r] r-length tuples, all possible orderings, no repeated elements
Raymond Hettinger36c3c022009-11-19 01:20:07 +000071:func:`combinations` p, r r-length tuples, in sorted order, no repeated elements
72:func:`combinations_with_replacement` p, r r-length tuples, in sorted order, with repeated elements
Raymond Hettinger7f587cd2009-04-10 19:43:50 +000073``product('ABCD', repeat=2)`` ``AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD``
74``permutations('ABCD', 2)`` ``AB AC AD BA BC BD CA CB CD DA DB DC``
75``combinations('ABCD', 2)`` ``AB AC AD BC BD CD``
76``combinations_with_replacement('ABCD', 2)`` ``AA AB AC AD BB BC BD CC CD DD``
77============================================== ==================== =============================================================
Georg Brandl116aa622007-08-15 14:28:22 +000078
79
80.. _itertools-functions:
81
82Itertool functions
83------------------
84
85The following module functions all construct and return iterators. Some provide
86streams of infinite length, so they should only be accessed by functions or
87loops that truncate the stream.
88
Raymond Hettinger5d446132011-03-27 18:52:10 -070089.. function:: accumulate(iterable[, func])
Raymond Hettingeradb81462010-12-01 22:50:36 +000090
Andrew Kuchling15b04eb2014-04-15 22:28:40 -040091 Make an iterator that returns accumulated sums, or accumulated
92 results of other binary functions (specified via the optional
93 *func* argument). If *func* is supplied, it should be a function
94 of two arguments. Elements of the input *iterable* may be any type
95 that can be accepted as arguments to *func*. (For example, with
96 the default operation of addition, elements may be any addable
97 type including :class:`~decimal.Decimal` or
98 :class:`~fractions.Fraction`.) If the input iterable is empty, the
99 output iterable will also be empty.
Raymond Hettingeradb81462010-12-01 22:50:36 +0000100
Raymond Hettinger672866d2016-05-28 00:17:54 -0700101 Roughly equivalent to::
Raymond Hettinger5d446132011-03-27 18:52:10 -0700102
103 def accumulate(iterable, func=operator.add):
Raymond Hettingeradb81462010-12-01 22:50:36 +0000104 'Return running totals'
Raymond Hettingerd8ff4652010-12-03 02:09:34 +0000105 # accumulate([1,2,3,4,5]) --> 1 3 6 10 15
Raymond Hettinger5d446132011-03-27 18:52:10 -0700106 # accumulate([1,2,3,4,5], operator.mul) --> 1 2 6 24 120
Raymond Hettingerd8ff4652010-12-03 02:09:34 +0000107 it = iter(iterable)
Raymond Hettinger828d9322014-11-22 21:56:23 -0800108 try:
109 total = next(it)
110 except StopIteration:
111 return
Raymond Hettingerd8ff4652010-12-03 02:09:34 +0000112 yield total
113 for element in it:
Raymond Hettinger5d446132011-03-27 18:52:10 -0700114 total = func(total, element)
Raymond Hettingerd8ff4652010-12-03 02:09:34 +0000115 yield total
Raymond Hettingeradb81462010-12-01 22:50:36 +0000116
Raymond Hettinger295c1d42011-04-21 11:09:28 -0700117 There are a number of uses for the *func* argument. It can be set to
118 :func:`min` for a running minimum, :func:`max` for a running maximum, or
119 :func:`operator.mul` for a running product. Amortization tables can be
120 built by accumulating interest and applying payments. First-order
Georg Brandl5d941342016-02-26 19:37:12 +0100121 `recurrence relations <https://en.wikipedia.org/wiki/Recurrence_relation>`_
Raymond Hettinger295c1d42011-04-21 11:09:28 -0700122 can be modeled by supplying the initial value in the iterable and using only
123 the accumulated total in *func* argument::
Raymond Hettinger5d446132011-03-27 18:52:10 -0700124
125 >>> data = [3, 4, 6, 2, 1, 9, 0, 7, 5, 8]
126 >>> list(accumulate(data, operator.mul)) # running product
127 [3, 12, 72, 144, 144, 1296, 0, 0, 0, 0]
128 >>> list(accumulate(data, max)) # running maximum
129 [3, 4, 6, 6, 6, 9, 9, 9, 9, 9]
130
131 # Amortize a 5% loan of 1000 with 4 annual payments of 90
132 >>> cashflows = [1000, -90, -90, -90, -90]
133 >>> list(accumulate(cashflows, lambda bal, pmt: bal*1.05 + pmt))
134 [1000, 960.0, 918.0, 873.9000000000001, 827.5950000000001]
135
Georg Brandl5d941342016-02-26 19:37:12 +0100136 # Chaotic recurrence relation https://en.wikipedia.org/wiki/Logistic_map
Raymond Hettinger295c1d42011-04-21 11:09:28 -0700137 >>> logistic_map = lambda x, _: r * x * (1 - x)
138 >>> r = 3.8
139 >>> x0 = 0.4
140 >>> inputs = repeat(x0, 36) # only the initial value is used
141 >>> [format(x, '.2f') for x in accumulate(inputs, logistic_map)]
142 ['0.40', '0.91', '0.30', '0.81', '0.60', '0.92', '0.29', '0.79', '0.63',
Serhiy Storchakaa4d170d2013-12-23 18:20:51 +0200143 '0.88', '0.39', '0.90', '0.33', '0.84', '0.52', '0.95', '0.18', '0.57',
Raymond Hettinger295c1d42011-04-21 11:09:28 -0700144 '0.93', '0.25', '0.71', '0.79', '0.63', '0.88', '0.39', '0.91', '0.32',
145 '0.83', '0.54', '0.95', '0.20', '0.60', '0.91', '0.30', '0.80', '0.60']
146
Raymond Hettinger64801682013-10-12 16:04:17 -0700147 See :func:`functools.reduce` for a similar function that returns only the
148 final accumulated value.
149
Raymond Hettingeradb81462010-12-01 22:50:36 +0000150 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000151
Raymond Hettinger5d446132011-03-27 18:52:10 -0700152 .. versionchanged:: 3.3
153 Added the optional *func* parameter.
154
Georg Brandl116aa622007-08-15 14:28:22 +0000155.. function:: chain(*iterables)
156
Raymond Hettinger30c73622010-12-01 23:45:20 +0000157 Make an iterator that returns elements from the first iterable until it is
158 exhausted, then proceeds to the next iterable, until all of the iterables are
159 exhausted. Used for treating consecutive sequences as a single sequence.
Raymond Hettinger672866d2016-05-28 00:17:54 -0700160 Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000161
Raymond Hettinger30c73622010-12-01 23:45:20 +0000162 def chain(*iterables):
163 # chain('ABC', 'DEF') --> A B C D E F
164 for it in iterables:
165 for element in it:
166 yield element
Georg Brandl116aa622007-08-15 14:28:22 +0000167
168
Georg Brandl933b9742010-07-29 14:36:11 +0000169.. classmethod:: chain.from_iterable(iterable)
Christian Heimes70e7ea22008-02-28 20:02:27 +0000170
Raymond Hettinger30c73622010-12-01 23:45:20 +0000171 Alternate constructor for :func:`chain`. Gets chained inputs from a
Raymond Hettinger1e21ebc2013-09-09 01:54:27 -0500172 single iterable argument that is evaluated lazily. Roughly equivalent to::
Christian Heimes70e7ea22008-02-28 20:02:27 +0000173
Raymond Hettinger30c73622010-12-01 23:45:20 +0000174 def from_iterable(iterables):
175 # chain.from_iterable(['ABC', 'DEF']) --> A B C D E F
176 for it in iterables:
177 for element in it:
178 yield element
Christian Heimes70e7ea22008-02-28 20:02:27 +0000179
Christian Heimes78644762008-03-04 23:39:23 +0000180
Christian Heimes836baa52008-02-26 08:18:30 +0000181.. function:: combinations(iterable, r)
182
Raymond Hettinger30c73622010-12-01 23:45:20 +0000183 Return *r* length subsequences of elements from the input *iterable*.
Christian Heimes836baa52008-02-26 08:18:30 +0000184
Raymond Hettinger30c73622010-12-01 23:45:20 +0000185 Combinations are emitted in lexicographic sort order. So, if the
186 input *iterable* is sorted, the combination tuples will be produced
187 in sorted order.
Christian Heimes836baa52008-02-26 08:18:30 +0000188
Raymond Hettinger30c73622010-12-01 23:45:20 +0000189 Elements are treated as unique based on their position, not on their
190 value. So if the input elements are unique, there will be no repeat
191 values in each combination.
Christian Heimes836baa52008-02-26 08:18:30 +0000192
Raymond Hettinger672866d2016-05-28 00:17:54 -0700193 Roughly equivalent to::
Christian Heimes836baa52008-02-26 08:18:30 +0000194
195 def combinations(iterable, r):
Raymond Hettingerdd1150e2008-03-13 02:39:40 +0000196 # combinations('ABCD', 2) --> AB AC AD BC BD CD
197 # combinations(range(4), 3) --> 012 013 023 123
Christian Heimes836baa52008-02-26 08:18:30 +0000198 pool = tuple(iterable)
Christian Heimes380f7f22008-02-28 11:19:05 +0000199 n = len(pool)
Raymond Hettinger5bad41e2009-01-08 21:01:54 +0000200 if r > n:
201 return
202 indices = list(range(r))
Christian Heimesb558a2e2008-03-02 22:46:37 +0000203 yield tuple(pool[i] for i in indices)
Raymond Hettingercf984ce2009-02-18 20:56:51 +0000204 while True:
Christian Heimes380f7f22008-02-28 11:19:05 +0000205 for i in reversed(range(r)):
Christian Heimesb558a2e2008-03-02 22:46:37 +0000206 if indices[i] != i + n - r:
Christian Heimes836baa52008-02-26 08:18:30 +0000207 break
Christian Heimes380f7f22008-02-28 11:19:05 +0000208 else:
209 return
Christian Heimesb558a2e2008-03-02 22:46:37 +0000210 indices[i] += 1
Christian Heimes380f7f22008-02-28 11:19:05 +0000211 for j in range(i+1, r):
Christian Heimesb558a2e2008-03-02 22:46:37 +0000212 indices[j] = indices[j-1] + 1
213 yield tuple(pool[i] for i in indices)
Christian Heimes836baa52008-02-26 08:18:30 +0000214
Raymond Hettinger30c73622010-12-01 23:45:20 +0000215 The code for :func:`combinations` can be also expressed as a subsequence
216 of :func:`permutations` after filtering entries where the elements are not
217 in sorted order (according to their position in the input pool)::
Christian Heimes78644762008-03-04 23:39:23 +0000218
219 def combinations(iterable, r):
220 pool = tuple(iterable)
221 n = len(pool)
222 for indices in permutations(range(n), r):
223 if sorted(indices) == list(indices):
224 yield tuple(pool[i] for i in indices)
225
Raymond Hettinger30c73622010-12-01 23:45:20 +0000226 The number of items returned is ``n! / r! / (n-r)!`` when ``0 <= r <= n``
227 or zero when ``r > n``.
Christian Heimes836baa52008-02-26 08:18:30 +0000228
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000229.. function:: combinations_with_replacement(iterable, r)
230
Raymond Hettinger30c73622010-12-01 23:45:20 +0000231 Return *r* length subsequences of elements from the input *iterable*
232 allowing individual elements to be repeated more than once.
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000233
Raymond Hettinger30c73622010-12-01 23:45:20 +0000234 Combinations are emitted in lexicographic sort order. So, if the
235 input *iterable* is sorted, the combination tuples will be produced
236 in sorted order.
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000237
Raymond Hettinger30c73622010-12-01 23:45:20 +0000238 Elements are treated as unique based on their position, not on their
239 value. So if the input elements are unique, the generated combinations
240 will also be unique.
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000241
Raymond Hettinger672866d2016-05-28 00:17:54 -0700242 Roughly equivalent to::
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000243
244 def combinations_with_replacement(iterable, r):
245 # combinations_with_replacement('ABC', 2) --> AA AB AC BB BC CC
246 pool = tuple(iterable)
247 n = len(pool)
248 if not n and r:
249 return
250 indices = [0] * r
251 yield tuple(pool[i] for i in indices)
Raymond Hettingercf984ce2009-02-18 20:56:51 +0000252 while True:
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000253 for i in reversed(range(r)):
254 if indices[i] != n - 1:
255 break
256 else:
257 return
258 indices[i:] = [indices[i] + 1] * (r - i)
259 yield tuple(pool[i] for i in indices)
260
Raymond Hettinger30c73622010-12-01 23:45:20 +0000261 The code for :func:`combinations_with_replacement` can be also expressed as
262 a subsequence of :func:`product` after filtering entries where the elements
263 are not in sorted order (according to their position in the input pool)::
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000264
265 def combinations_with_replacement(iterable, r):
266 pool = tuple(iterable)
267 n = len(pool)
268 for indices in product(range(n), repeat=r):
269 if sorted(indices) == list(indices):
270 yield tuple(pool[i] for i in indices)
271
Raymond Hettinger30c73622010-12-01 23:45:20 +0000272 The number of items returned is ``(n+r-1)! / r! / (n-1)!`` when ``n > 0``.
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000273
Raymond Hettinger30c73622010-12-01 23:45:20 +0000274 .. versionadded:: 3.1
Raymond Hettingerd07d9392009-01-27 04:20:44 +0000275
Georg Brandl67b21b72010-08-17 15:07:14 +0000276
Raymond Hettinger6b3b0fc2009-01-26 02:56:58 +0000277.. function:: compress(data, selectors)
278
Raymond Hettinger30c73622010-12-01 23:45:20 +0000279 Make an iterator that filters elements from *data* returning only those that
280 have a corresponding element in *selectors* that evaluates to ``True``.
281 Stops when either the *data* or *selectors* iterables has been exhausted.
Raymond Hettinger672866d2016-05-28 00:17:54 -0700282 Roughly equivalent to::
Raymond Hettinger6b3b0fc2009-01-26 02:56:58 +0000283
Raymond Hettinger30c73622010-12-01 23:45:20 +0000284 def compress(data, selectors):
285 # compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F
286 return (d for d, s in zip(data, selectors) if s)
Raymond Hettinger6b3b0fc2009-01-26 02:56:58 +0000287
Raymond Hettinger30c73622010-12-01 23:45:20 +0000288 .. versionadded:: 3.1
Raymond Hettinger6b3b0fc2009-01-26 02:56:58 +0000289
290
Raymond Hettinger9e8dbbc2009-02-14 04:21:49 +0000291.. function:: count(start=0, step=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000292
Andrew Kuchlingedb42602013-06-21 08:00:58 -0400293 Make an iterator that returns evenly spaced values starting with number *start*. Often
Raymond Hettinger30c73622010-12-01 23:45:20 +0000294 used as an argument to :func:`map` to generate consecutive data points.
Raymond Hettinger672866d2016-05-28 00:17:54 -0700295 Also, used with :func:`zip` to add sequence numbers. Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000296
Raymond Hettinger30c73622010-12-01 23:45:20 +0000297 def count(start=0, step=1):
298 # count(10) --> 10 11 12 13 14 ...
Georg Brandl37a80dc2011-01-13 07:31:18 +0000299 # count(2.5, 0.5) -> 2.5 3.0 3.5 ...
Raymond Hettinger30c73622010-12-01 23:45:20 +0000300 n = start
301 while True:
302 yield n
303 n += step
Georg Brandl116aa622007-08-15 14:28:22 +0000304
Raymond Hettinger30c73622010-12-01 23:45:20 +0000305 When counting with floating point numbers, better accuracy can sometimes be
306 achieved by substituting multiplicative code such as: ``(start + step * i
307 for i in count())``.
Raymond Hettinger5bc472a2009-06-17 01:40:52 +0000308
Raymond Hettinger30c73622010-12-01 23:45:20 +0000309 .. versionchanged:: 3.1
310 Added *step* argument and allowed non-integer arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000311
312.. function:: cycle(iterable)
313
Raymond Hettinger30c73622010-12-01 23:45:20 +0000314 Make an iterator returning elements from the iterable and saving a copy of each.
315 When the iterable is exhausted, return elements from the saved copy. Repeats
Raymond Hettinger672866d2016-05-28 00:17:54 -0700316 indefinitely. Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000317
Raymond Hettinger30c73622010-12-01 23:45:20 +0000318 def cycle(iterable):
319 # cycle('ABCD') --> A B C D A B C D A B C D ...
320 saved = []
321 for element in iterable:
322 yield element
323 saved.append(element)
324 while saved:
325 for element in saved:
Georg Brandl116aa622007-08-15 14:28:22 +0000326 yield element
327
Raymond Hettinger30c73622010-12-01 23:45:20 +0000328 Note, this member of the toolkit may require significant auxiliary storage
329 (depending on the length of the iterable).
Georg Brandl116aa622007-08-15 14:28:22 +0000330
331
332.. function:: dropwhile(predicate, iterable)
333
Raymond Hettinger30c73622010-12-01 23:45:20 +0000334 Make an iterator that drops elements from the iterable as long as the predicate
335 is true; afterwards, returns every element. Note, the iterator does not produce
336 *any* output until the predicate first becomes false, so it may have a lengthy
Raymond Hettinger672866d2016-05-28 00:17:54 -0700337 start-up time. Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000338
Raymond Hettinger30c73622010-12-01 23:45:20 +0000339 def dropwhile(predicate, iterable):
340 # dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1
341 iterable = iter(iterable)
342 for x in iterable:
343 if not predicate(x):
344 yield x
345 break
346 for x in iterable:
347 yield x
Georg Brandl116aa622007-08-15 14:28:22 +0000348
Raymond Hettinger749761e2009-01-27 04:42:48 +0000349.. function:: filterfalse(predicate, iterable)
350
Raymond Hettinger30c73622010-12-01 23:45:20 +0000351 Make an iterator that filters elements from iterable returning only those for
352 which the predicate is ``False``. If *predicate* is ``None``, return the items
Raymond Hettinger672866d2016-05-28 00:17:54 -0700353 that are false. Roughly equivalent to::
Raymond Hettinger749761e2009-01-27 04:42:48 +0000354
Raymond Hettinger30c73622010-12-01 23:45:20 +0000355 def filterfalse(predicate, iterable):
356 # filterfalse(lambda x: x%2, range(10)) --> 0 2 4 6 8
357 if predicate is None:
358 predicate = bool
359 for x in iterable:
360 if not predicate(x):
361 yield x
Raymond Hettinger749761e2009-01-27 04:42:48 +0000362
Georg Brandl116aa622007-08-15 14:28:22 +0000363
Georg Brandl3dd33882009-06-01 17:35:27 +0000364.. function:: groupby(iterable, key=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000365
Raymond Hettinger30c73622010-12-01 23:45:20 +0000366 Make an iterator that returns consecutive keys and groups from the *iterable*.
367 The *key* is a function computing a key value for each element. If not
368 specified or is ``None``, *key* defaults to an identity function and returns
369 the element unchanged. Generally, the iterable needs to already be sorted on
370 the same key function.
Georg Brandl116aa622007-08-15 14:28:22 +0000371
Raymond Hettinger30c73622010-12-01 23:45:20 +0000372 The operation of :func:`groupby` is similar to the ``uniq`` filter in Unix. It
373 generates a break or new group every time the value of the key function changes
374 (which is why it is usually necessary to have sorted the data using the same key
375 function). That behavior differs from SQL's GROUP BY which aggregates common
376 elements regardless of their input order.
Georg Brandl116aa622007-08-15 14:28:22 +0000377
Raymond Hettinger30c73622010-12-01 23:45:20 +0000378 The returned group is itself an iterator that shares the underlying iterable
379 with :func:`groupby`. Because the source is shared, when the :func:`groupby`
380 object is advanced, the previous group is no longer visible. So, if that data
381 is needed later, it should be stored as a list::
Georg Brandl116aa622007-08-15 14:28:22 +0000382
Raymond Hettinger30c73622010-12-01 23:45:20 +0000383 groups = []
384 uniquekeys = []
385 data = sorted(data, key=keyfunc)
386 for k, g in groupby(data, keyfunc):
387 groups.append(list(g)) # Store group iterator as a list
388 uniquekeys.append(k)
Georg Brandl116aa622007-08-15 14:28:22 +0000389
Raymond Hettinger672866d2016-05-28 00:17:54 -0700390 :func:`groupby` is roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000391
Raymond Hettinger30c73622010-12-01 23:45:20 +0000392 class groupby:
393 # [k for k, g in groupby('AAAABBBCCDAABBB')] --> A B C D A B
394 # [list(g) for k, g in groupby('AAAABBBCCD')] --> AAAA BBB CC D
395 def __init__(self, iterable, key=None):
396 if key is None:
397 key = lambda x: x
398 self.keyfunc = key
399 self.it = iter(iterable)
400 self.tgtkey = self.currkey = self.currvalue = object()
401 def __iter__(self):
402 return self
403 def __next__(self):
404 while self.currkey == self.tgtkey:
405 self.currvalue = next(self.it) # Exit on StopIteration
406 self.currkey = self.keyfunc(self.currvalue)
407 self.tgtkey = self.currkey
408 return (self.currkey, self._grouper(self.tgtkey))
409 def _grouper(self, tgtkey):
410 while self.currkey == tgtkey:
411 yield self.currvalue
Raymond Hettinger828d9322014-11-22 21:56:23 -0800412 try:
413 self.currvalue = next(self.it)
414 except StopIteration:
415 return
Raymond Hettinger30c73622010-12-01 23:45:20 +0000416 self.currkey = self.keyfunc(self.currvalue)
Georg Brandl116aa622007-08-15 14:28:22 +0000417
Georg Brandl116aa622007-08-15 14:28:22 +0000418
Ezio Melottie0add762012-09-14 06:32:35 +0300419.. function:: islice(iterable, stop)
420 islice(iterable, start, stop[, step])
Georg Brandl116aa622007-08-15 14:28:22 +0000421
Raymond Hettinger30c73622010-12-01 23:45:20 +0000422 Make an iterator that returns selected elements from the iterable. If *start* is
423 non-zero, then elements from the iterable are skipped until start is reached.
424 Afterward, elements are returned consecutively unless *step* is set higher than
425 one which results in items being skipped. If *stop* is ``None``, then iteration
426 continues until the iterator is exhausted, if at all; otherwise, it stops at the
427 specified position. Unlike regular slicing, :func:`islice` does not support
428 negative values for *start*, *stop*, or *step*. Can be used to extract related
429 fields from data where the internal structure has been flattened (for example, a
Raymond Hettinger672866d2016-05-28 00:17:54 -0700430 multi-line report may list a name field on every third line). Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000431
Raymond Hettinger30c73622010-12-01 23:45:20 +0000432 def islice(iterable, *args):
433 # islice('ABCDEFG', 2) --> A B
434 # islice('ABCDEFG', 2, 4) --> C D
435 # islice('ABCDEFG', 2, None) --> C D E F G
436 # islice('ABCDEFG', 0, None, 2) --> A C E G
437 s = slice(*args)
438 it = iter(range(s.start or 0, s.stop or sys.maxsize, s.step or 1))
Raymond Hettinger828d9322014-11-22 21:56:23 -0800439 try:
440 nexti = next(it)
441 except StopIteration:
442 return
Raymond Hettinger30c73622010-12-01 23:45:20 +0000443 for i, element in enumerate(iterable):
444 if i == nexti:
445 yield element
446 nexti = next(it)
Georg Brandl116aa622007-08-15 14:28:22 +0000447
Raymond Hettinger30c73622010-12-01 23:45:20 +0000448 If *start* is ``None``, then iteration starts at zero. If *step* is ``None``,
449 then the step defaults to one.
Georg Brandl116aa622007-08-15 14:28:22 +0000450
Georg Brandl116aa622007-08-15 14:28:22 +0000451
Georg Brandl3dd33882009-06-01 17:35:27 +0000452.. function:: permutations(iterable, r=None)
Christian Heimes70e7ea22008-02-28 20:02:27 +0000453
Raymond Hettinger30c73622010-12-01 23:45:20 +0000454 Return successive *r* length permutations of elements in the *iterable*.
Christian Heimes70e7ea22008-02-28 20:02:27 +0000455
Raymond Hettinger30c73622010-12-01 23:45:20 +0000456 If *r* is not specified or is ``None``, then *r* defaults to the length
457 of the *iterable* and all possible full-length permutations
458 are generated.
Christian Heimes70e7ea22008-02-28 20:02:27 +0000459
Raymond Hettinger30c73622010-12-01 23:45:20 +0000460 Permutations are emitted in lexicographic sort order. So, if the
461 input *iterable* is sorted, the permutation tuples will be produced
462 in sorted order.
Christian Heimes70e7ea22008-02-28 20:02:27 +0000463
Raymond Hettinger30c73622010-12-01 23:45:20 +0000464 Elements are treated as unique based on their position, not on their
465 value. So if the input elements are unique, there will be no repeat
466 values in each permutation.
Christian Heimes70e7ea22008-02-28 20:02:27 +0000467
Raymond Hettinger672866d2016-05-28 00:17:54 -0700468 Roughly equivalent to::
Christian Heimesb558a2e2008-03-02 22:46:37 +0000469
470 def permutations(iterable, r=None):
Raymond Hettingerdd1150e2008-03-13 02:39:40 +0000471 # permutations('ABCD', 2) --> AB AC AD BA BC BD CA CB CD DA DB DC
472 # permutations(range(3)) --> 012 021 102 120 201 210
Christian Heimesb558a2e2008-03-02 22:46:37 +0000473 pool = tuple(iterable)
474 n = len(pool)
475 r = n if r is None else r
Raymond Hettinger5bad41e2009-01-08 21:01:54 +0000476 if r > n:
477 return
478 indices = list(range(n))
Sandro Tosi73866622011-12-25 17:25:45 +0100479 cycles = list(range(n, n-r, -1))
Christian Heimesb558a2e2008-03-02 22:46:37 +0000480 yield tuple(pool[i] for i in indices[:r])
481 while n:
482 for i in reversed(range(r)):
483 cycles[i] -= 1
484 if cycles[i] == 0:
485 indices[i:] = indices[i+1:] + indices[i:i+1]
486 cycles[i] = n - i
487 else:
488 j = cycles[i]
489 indices[i], indices[-j] = indices[-j], indices[i]
490 yield tuple(pool[i] for i in indices[:r])
491 break
492 else:
493 return
Christian Heimes70e7ea22008-02-28 20:02:27 +0000494
Raymond Hettinger30c73622010-12-01 23:45:20 +0000495 The code for :func:`permutations` can be also expressed as a subsequence of
496 :func:`product`, filtered to exclude entries with repeated elements (those
497 from the same position in the input pool)::
Christian Heimes78644762008-03-04 23:39:23 +0000498
499 def permutations(iterable, r=None):
500 pool = tuple(iterable)
501 n = len(pool)
502 r = n if r is None else r
503 for indices in product(range(n), repeat=r):
504 if len(set(indices)) == r:
505 yield tuple(pool[i] for i in indices)
506
Raymond Hettinger30c73622010-12-01 23:45:20 +0000507 The number of items returned is ``n! / (n-r)!`` when ``0 <= r <= n``
508 or zero when ``r > n``.
Christian Heimes70e7ea22008-02-28 20:02:27 +0000509
Georg Brandl3dd33882009-06-01 17:35:27 +0000510.. function:: product(*iterables, repeat=1)
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000511
Raymond Hettinger30c73622010-12-01 23:45:20 +0000512 Cartesian product of input iterables.
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000513
Raymond Hettinger672866d2016-05-28 00:17:54 -0700514 Roughly equivalent to nested for-loops in a generator expression. For example,
Raymond Hettinger30c73622010-12-01 23:45:20 +0000515 ``product(A, B)`` returns the same as ``((x,y) for x in A for y in B)``.
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000516
Raymond Hettinger30c73622010-12-01 23:45:20 +0000517 The nested loops cycle like an odometer with the rightmost element advancing
518 on every iteration. This pattern creates a lexicographic ordering so that if
519 the input's iterables are sorted, the product tuples are emitted in sorted
520 order.
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000521
Raymond Hettinger30c73622010-12-01 23:45:20 +0000522 To compute the product of an iterable with itself, specify the number of
523 repetitions with the optional *repeat* keyword argument. For example,
524 ``product(A, repeat=4)`` means the same as ``product(A, A, A, A)``.
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000525
Raymond Hettinger672866d2016-05-28 00:17:54 -0700526 This function is roughly equivalent to the following code, except that the
Raymond Hettinger30c73622010-12-01 23:45:20 +0000527 actual implementation does not build up intermediate results in memory::
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000528
Raymond Hettinger30c73622010-12-01 23:45:20 +0000529 def product(*args, repeat=1):
530 # product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
531 # product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111
532 pools = [tuple(pool) for pool in args] * repeat
533 result = [[]]
534 for pool in pools:
535 result = [x+[y] for x in result for y in pool]
536 for prod in result:
537 yield tuple(prod)
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000538
539
Raymond Hettingerd75ad442009-06-01 19:16:52 +0000540.. function:: repeat(object[, times])
Georg Brandl116aa622007-08-15 14:28:22 +0000541
Raymond Hettinger30c73622010-12-01 23:45:20 +0000542 Make an iterator that returns *object* over and over again. Runs indefinitely
543 unless the *times* argument is specified. Used as argument to :func:`map` for
544 invariant parameters to the called function. Also used with :func:`zip` to
Raymond Hettinger672866d2016-05-28 00:17:54 -0700545 create an invariant part of a tuple record.
546
547 Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000548
Raymond Hettinger30c73622010-12-01 23:45:20 +0000549 def repeat(object, times=None):
550 # repeat(10, 3) --> 10 10 10
551 if times is None:
552 while True:
553 yield object
554 else:
555 for i in range(times):
556 yield object
Georg Brandl116aa622007-08-15 14:28:22 +0000557
Raymond Hettingerfc3ba6b2012-02-01 09:07:40 -0800558 A common use for *repeat* is to supply a stream of constant values to *map*
559 or *zip*::
560
561 >>> list(map(pow, range(10), repeat(2)))
562 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
Georg Brandl116aa622007-08-15 14:28:22 +0000563
564.. function:: starmap(function, iterable)
565
Raymond Hettinger30c73622010-12-01 23:45:20 +0000566 Make an iterator that computes the function using arguments obtained from
567 the iterable. Used instead of :func:`map` when argument parameters are already
568 grouped in tuples from a single iterable (the data has been "pre-zipped"). The
569 difference between :func:`map` and :func:`starmap` parallels the distinction
Raymond Hettinger672866d2016-05-28 00:17:54 -0700570 between ``function(a,b)`` and ``function(*c)``. Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000571
Raymond Hettinger30c73622010-12-01 23:45:20 +0000572 def starmap(function, iterable):
573 # starmap(pow, [(2,5), (3,2), (10,3)]) --> 32 9 1000
574 for args in iterable:
575 yield function(*args)
Christian Heimes679db4a2008-01-18 09:56:22 +0000576
Georg Brandl116aa622007-08-15 14:28:22 +0000577
578.. function:: takewhile(predicate, iterable)
579
Raymond Hettinger30c73622010-12-01 23:45:20 +0000580 Make an iterator that returns elements from the iterable as long as the
Raymond Hettinger672866d2016-05-28 00:17:54 -0700581 predicate is true. Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000582
Raymond Hettinger30c73622010-12-01 23:45:20 +0000583 def takewhile(predicate, iterable):
584 # takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4
585 for x in iterable:
586 if predicate(x):
587 yield x
588 else:
589 break
Georg Brandl116aa622007-08-15 14:28:22 +0000590
591
Georg Brandl3dd33882009-06-01 17:35:27 +0000592.. function:: tee(iterable, n=2)
Georg Brandl116aa622007-08-15 14:28:22 +0000593
Raymond Hettingerab425aa2016-04-26 00:10:00 -0700594 Return *n* independent iterators from a single iterable.
595
596 The following Python code helps explain what *tee* does (although the actual
Serhiy Storchaka4ecfa452016-05-16 09:31:54 +0300597 implementation is more complex and uses only a single underlying
Raymond Hettinger672866d2016-05-28 00:17:54 -0700598 :abbr:`FIFO (first-in, first-out)` queue).
599
600 Roughly equivalent to::
Georg Brandl116aa622007-08-15 14:28:22 +0000601
Raymond Hettingercf984ce2009-02-18 20:56:51 +0000602 def tee(iterable, n=2):
603 it = iter(iterable)
604 deques = [collections.deque() for i in range(n)]
605 def gen(mydeque):
606 while True:
607 if not mydeque: # when the local deque is empty
Raymond Hettinger828d9322014-11-22 21:56:23 -0800608 try:
609 newval = next(it) # fetch a new value and
610 except StopIteration:
611 return
Raymond Hettingercf984ce2009-02-18 20:56:51 +0000612 for d in deques: # load it to all the deques
613 d.append(newval)
614 yield mydeque.popleft()
615 return tuple(gen(d) for d in deques)
Georg Brandl116aa622007-08-15 14:28:22 +0000616
Raymond Hettinger30c73622010-12-01 23:45:20 +0000617 Once :func:`tee` has made a split, the original *iterable* should not be
618 used anywhere else; otherwise, the *iterable* could get advanced without
619 the tee objects being informed.
Georg Brandl116aa622007-08-15 14:28:22 +0000620
Raymond Hettinger30c73622010-12-01 23:45:20 +0000621 This itertool may require significant auxiliary storage (depending on how
622 much temporary data needs to be stored). In general, if one iterator uses
623 most or all of the data before another iterator starts, it is faster to use
624 :func:`list` instead of :func:`tee`.
Georg Brandl116aa622007-08-15 14:28:22 +0000625
Georg Brandl116aa622007-08-15 14:28:22 +0000626
Georg Brandl3dd33882009-06-01 17:35:27 +0000627.. function:: zip_longest(*iterables, fillvalue=None)
Raymond Hettinger749761e2009-01-27 04:42:48 +0000628
Raymond Hettinger30c73622010-12-01 23:45:20 +0000629 Make an iterator that aggregates elements from each of the iterables. If the
630 iterables are of uneven length, missing values are filled-in with *fillvalue*.
Raymond Hettinger672866d2016-05-28 00:17:54 -0700631 Iteration continues until the longest iterable is exhausted. Roughly equivalent to::
Raymond Hettinger749761e2009-01-27 04:42:48 +0000632
Raymond Hettinger6f45d182011-10-30 15:06:14 -0700633 class ZipExhausted(Exception):
634 pass
635
636 def zip_longest(*args, **kwds):
Raymond Hettinger30c73622010-12-01 23:45:20 +0000637 # zip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-
Raymond Hettinger6f45d182011-10-30 15:06:14 -0700638 fillvalue = kwds.get('fillvalue')
639 counter = len(args) - 1
640 def sentinel():
641 nonlocal counter
642 if not counter:
643 raise ZipExhausted
644 counter -= 1
645 yield fillvalue
Raymond Hettinger30c73622010-12-01 23:45:20 +0000646 fillers = repeat(fillvalue)
Raymond Hettinger6f45d182011-10-30 15:06:14 -0700647 iterators = [chain(it, sentinel(), fillers) for it in args]
Raymond Hettinger30c73622010-12-01 23:45:20 +0000648 try:
Raymond Hettinger6f45d182011-10-30 15:06:14 -0700649 while iterators:
650 yield tuple(map(next, iterators))
651 except ZipExhausted:
Raymond Hettinger30c73622010-12-01 23:45:20 +0000652 pass
Raymond Hettinger749761e2009-01-27 04:42:48 +0000653
Raymond Hettinger30c73622010-12-01 23:45:20 +0000654 If one of the iterables is potentially infinite, then the :func:`zip_longest`
655 function should be wrapped with something that limits the number of calls
656 (for example :func:`islice` or :func:`takewhile`). If not specified,
657 *fillvalue* defaults to ``None``.
Raymond Hettinger749761e2009-01-27 04:42:48 +0000658
659
Georg Brandl116aa622007-08-15 14:28:22 +0000660.. _itertools-recipes:
661
Raymond Hettinger1fa76822010-12-06 23:31:36 +0000662Itertools Recipes
663-----------------
Georg Brandl116aa622007-08-15 14:28:22 +0000664
665This section shows recipes for creating an extended toolset using the existing
666itertools as building blocks.
667
668The extended tools offer the same high performance as the underlying toolset.
669The superior memory performance is kept by processing elements one at a time
670rather than bringing the whole iterable into memory all at once. Code volume is
671kept small by linking the tools together in a functional style which helps
672eliminate temporary variables. High speed is retained by preferring
Georg Brandl9afde1c2007-11-01 20:32:30 +0000673"vectorized" building blocks over the use of for-loops and :term:`generator`\s
Christian Heimesfe337bf2008-03-23 21:54:12 +0000674which incur interpreter overhead.
675
676.. testcode::
Georg Brandl116aa622007-08-15 14:28:22 +0000677
Raymond Hettinger30c73622010-12-01 23:45:20 +0000678 def take(n, iterable):
679 "Return first n items of the iterable as a list"
680 return list(islice(iterable, n))
Georg Brandl116aa622007-08-15 14:28:22 +0000681
Raymond Hettinger30c73622010-12-01 23:45:20 +0000682 def tabulate(function, start=0):
683 "Return function(0), function(1), ..."
684 return map(function, count(start))
Raymond Hettingerdd1150e2008-03-13 02:39:40 +0000685
Raymond Hettingerdfe098d2014-05-25 22:03:56 -0700686 def tail(n, iterable):
687 "Return an iterator over the last n items"
688 # tail(3, 'ABCDEFG') --> E F G
689 return iter(collections.deque(iterable, maxlen=n))
690
Raymond Hettinger30c73622010-12-01 23:45:20 +0000691 def consume(iterator, n):
692 "Advance the iterator n-steps ahead. If n is none, consume entirely."
693 # Use functions that consume iterators at C speed.
694 if n is None:
695 # feed the entire iterator into a zero-length deque
696 collections.deque(iterator, maxlen=0)
697 else:
698 # advance to the empty slice starting at position n
699 next(islice(iterator, n, n), None)
Raymond Hettingerfa007962009-03-09 11:55:25 +0000700
Raymond Hettinger30c73622010-12-01 23:45:20 +0000701 def nth(iterable, n, default=None):
702 "Returns the nth item or a default value"
703 return next(islice(iterable, n, None), default)
Georg Brandl116aa622007-08-15 14:28:22 +0000704
Raymond Hettingere525ee32016-03-06 18:11:38 -0800705 def all_equal(iterable):
706 "Returns True if all the elements are equal to each other"
707 g = groupby(iterable)
708 return next(g, True) and not next(g, False)
709
Raymond Hettinger30c73622010-12-01 23:45:20 +0000710 def quantify(iterable, pred=bool):
711 "Count how many times the predicate is true"
712 return sum(map(pred, iterable))
Georg Brandl116aa622007-08-15 14:28:22 +0000713
Raymond Hettinger30c73622010-12-01 23:45:20 +0000714 def padnone(iterable):
715 """Returns the sequence elements and then returns None indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +0000716
Raymond Hettinger30c73622010-12-01 23:45:20 +0000717 Useful for emulating the behavior of the built-in map() function.
718 """
719 return chain(iterable, repeat(None))
Georg Brandl116aa622007-08-15 14:28:22 +0000720
Raymond Hettinger30c73622010-12-01 23:45:20 +0000721 def ncycles(iterable, n):
722 "Returns the sequence elements n times"
723 return chain.from_iterable(repeat(tuple(iterable), n))
Georg Brandl116aa622007-08-15 14:28:22 +0000724
Raymond Hettinger30c73622010-12-01 23:45:20 +0000725 def dotproduct(vec1, vec2):
726 return sum(map(operator.mul, vec1, vec2))
Georg Brandl116aa622007-08-15 14:28:22 +0000727
Raymond Hettinger30c73622010-12-01 23:45:20 +0000728 def flatten(listOfLists):
729 "Flatten one level of nesting"
730 return chain.from_iterable(listOfLists)
Georg Brandl116aa622007-08-15 14:28:22 +0000731
Raymond Hettinger30c73622010-12-01 23:45:20 +0000732 def repeatfunc(func, times=None, *args):
733 """Repeat calls to func with specified arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000734
Raymond Hettinger30c73622010-12-01 23:45:20 +0000735 Example: repeatfunc(random.random)
736 """
737 if times is None:
738 return starmap(func, repeat(args))
739 return starmap(func, repeat(args, times))
Georg Brandl116aa622007-08-15 14:28:22 +0000740
Raymond Hettinger30c73622010-12-01 23:45:20 +0000741 def pairwise(iterable):
742 "s -> (s0,s1), (s1,s2), (s2, s3), ..."
743 a, b = tee(iterable)
744 next(b, None)
745 return zip(a, b)
Georg Brandl116aa622007-08-15 14:28:22 +0000746
Raymond Hettinger44571da2013-05-05 19:53:41 -0700747 def grouper(iterable, n, fillvalue=None):
Raymond Hettinger9ae94732012-07-08 16:04:03 -0700748 "Collect data into fixed-length chunks or blocks"
Raymond Hettinger44571da2013-05-05 19:53:41 -0700749 # grouper('ABCDEFG', 3, 'x') --> ABC DEF Gxx"
Raymond Hettinger30c73622010-12-01 23:45:20 +0000750 args = [iter(iterable)] * n
751 return zip_longest(*args, fillvalue=fillvalue)
Georg Brandl116aa622007-08-15 14:28:22 +0000752
Raymond Hettinger30c73622010-12-01 23:45:20 +0000753 def roundrobin(*iterables):
754 "roundrobin('ABC', 'D', 'EF') --> A D E B F C"
755 # Recipe credited to George Sakkis
756 pending = len(iterables)
757 nexts = cycle(iter(it).__next__ for it in iterables)
758 while pending:
759 try:
760 for next in nexts:
761 yield next()
762 except StopIteration:
763 pending -= 1
764 nexts = cycle(islice(nexts, pending))
Georg Brandl116aa622007-08-15 14:28:22 +0000765
Raymond Hettinger30c73622010-12-01 23:45:20 +0000766 def partition(pred, iterable):
767 'Use a predicate to partition entries into false entries and true entries'
768 # partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9
769 t1, t2 = tee(iterable)
770 return filterfalse(pred, t1), filter(pred, t2)
Raymond Hettinger5ce0aa22010-12-01 10:49:19 +0000771
Raymond Hettinger30c73622010-12-01 23:45:20 +0000772 def powerset(iterable):
773 "powerset([1,2,3]) --> () (1,) (2,) (3,) (1,2) (1,3) (2,3) (1,2,3)"
774 s = list(iterable)
775 return chain.from_iterable(combinations(s, r) for r in range(len(s)+1))
Raymond Hettinger08d01ee2010-08-07 05:36:53 +0000776
Raymond Hettinger30c73622010-12-01 23:45:20 +0000777 def unique_everseen(iterable, key=None):
778 "List unique elements, preserving order. Remember all elements ever seen."
779 # unique_everseen('AAAABBBCCDAABBB') --> A B C D
780 # unique_everseen('ABBCcAD', str.lower) --> A B C D
781 seen = set()
782 seen_add = seen.add
783 if key is None:
784 for element in filterfalse(seen.__contains__, iterable):
785 seen_add(element)
786 yield element
787 else:
788 for element in iterable:
789 k = key(element)
790 if k not in seen:
791 seen_add(k)
792 yield element
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000793
Raymond Hettinger30c73622010-12-01 23:45:20 +0000794 def unique_justseen(iterable, key=None):
795 "List unique elements, preserving order. Remember only the element just seen."
796 # unique_justseen('AAAABBBCCDAABBB') --> A B C D A B
797 # unique_justseen('ABBCcAD', str.lower) --> A B C A D
798 return map(next, map(itemgetter(1), groupby(iterable, key)))
Raymond Hettingerad9d96b2009-01-02 21:39:07 +0000799
Raymond Hettinger30c73622010-12-01 23:45:20 +0000800 def iter_except(func, exception, first=None):
801 """ Call a function repeatedly until an exception is raised.
Raymond Hettingerfc91aa22010-03-28 18:27:13 +0000802
Raymond Hettinger30c73622010-12-01 23:45:20 +0000803 Converts a call-until-exception interface to an iterator interface.
Andrew Kuchling1d7d5802013-06-20 21:17:41 -0400804 Like builtins.iter(func, sentinel) but uses an exception instead
Raymond Hettinger30c73622010-12-01 23:45:20 +0000805 of a sentinel to end the loop.
Raymond Hettingerfc91aa22010-03-28 18:27:13 +0000806
Raymond Hettinger30c73622010-12-01 23:45:20 +0000807 Examples:
808 iter_except(functools.partial(heappop, h), IndexError) # priority queue iterator
809 iter_except(d.popitem, KeyError) # non-blocking dict iterator
810 iter_except(d.popleft, IndexError) # non-blocking deque iterator
811 iter_except(q.get_nowait, Queue.Empty) # loop over a producer Queue
812 iter_except(s.pop, KeyError) # non-blocking set iterator
Raymond Hettingerfc91aa22010-03-28 18:27:13 +0000813
Raymond Hettinger30c73622010-12-01 23:45:20 +0000814 """
815 try:
816 if first is not None:
817 yield first() # For database APIs needing an initial cast to db.first()
Raymond Hettingera503f702016-03-13 00:12:31 -0800818 while True:
Raymond Hettinger30c73622010-12-01 23:45:20 +0000819 yield func()
820 except exception:
821 pass
Raymond Hettingerfc91aa22010-03-28 18:27:13 +0000822
Raymond Hettinger31b26f62014-04-02 03:16:42 -0700823 def first_true(iterable, default=False, pred=None):
824 """Returns the first true value in the iterable.
825
826 If no true value is found, returns *default*
827
828 If *pred* is not None, returns the first item
829 for which pred(item) is true.
830
831 """
832 # first_true([a,b,c], x) --> a or b or c or x
833 # first_true([a,b], x, f) --> a if f(a) else b if f(b) else x
834 return next(filter(pred, iterable), default)
835
Raymond Hettinger30c73622010-12-01 23:45:20 +0000836 def random_product(*args, repeat=1):
837 "Random selection from itertools.product(*args, **kwds)"
838 pools = [tuple(pool) for pool in args] * repeat
839 return tuple(random.choice(pool) for pool in pools)
Raymond Hettingerfc91aa22010-03-28 18:27:13 +0000840
Raymond Hettinger30c73622010-12-01 23:45:20 +0000841 def random_permutation(iterable, r=None):
842 "Random selection from itertools.permutations(iterable, r)"
843 pool = tuple(iterable)
844 r = len(pool) if r is None else r
845 return tuple(random.sample(pool, r))
Raymond Hettinger063a4b62010-04-02 04:18:18 +0000846
Raymond Hettinger30c73622010-12-01 23:45:20 +0000847 def random_combination(iterable, r):
848 "Random selection from itertools.combinations(iterable, r)"
849 pool = tuple(iterable)
850 n = len(pool)
851 indices = sorted(random.sample(range(n), r))
852 return tuple(pool[i] for i in indices)
Raymond Hettinger063a4b62010-04-02 04:18:18 +0000853
Raymond Hettinger30c73622010-12-01 23:45:20 +0000854 def random_combination_with_replacement(iterable, r):
855 "Random selection from itertools.combinations_with_replacement(iterable, r)"
856 pool = tuple(iterable)
857 n = len(pool)
858 indices = sorted(random.randrange(n) for i in range(r))
859 return tuple(pool[i] for i in indices)
Raymond Hettinger063a4b62010-04-02 04:18:18 +0000860
Raymond Hettingerfc91aa22010-03-28 18:27:13 +0000861Note, many of the above recipes can be optimized by replacing global lookups
862with local variables defined as default values. For example, the
863*dotproduct* recipe can be written as::
864
Raymond Hettinger30c73622010-12-01 23:45:20 +0000865 def dotproduct(vec1, vec2, sum=sum, map=map, mul=operator.mul):
866 return sum(map(mul, vec1, vec2))