Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`itertools` --- Functions creating iterators for efficient looping |
| 2 | ======================================================================= |
| 3 | |
| 4 | .. module:: itertools |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 5 | :synopsis: Functions creating iterators for efficient looping. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 6 | .. moduleauthor:: Raymond Hettinger <python@rcn.com> |
| 7 | .. sectionauthor:: Raymond Hettinger <python@rcn.com> |
| 8 | |
| 9 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 10 | .. testsetup:: |
| 11 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 12 | from itertools import * |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 13 | |
| 14 | |
Raymond Hettinger | f76b920 | 2009-02-17 20:00:59 +0000 | [diff] [blame] | 15 | This module implements a number of :term:`iterator` building blocks inspired |
| 16 | by constructs from APL, Haskell, and SML. Each has been recast in a form |
| 17 | suitable for Python. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 18 | |
| 19 | The module standardizes a core set of fast, memory efficient tools that are |
Raymond Hettinger | f76b920 | 2009-02-17 20:00:59 +0000 | [diff] [blame] | 20 | useful by themselves or in combination. Together, they form an "iterator |
| 21 | algebra" making it possible to construct specialized tools succinctly and |
| 22 | efficiently in pure Python. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 23 | |
| 24 | For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a |
Ezio Melotti | b660599 | 2010-01-21 20:57:24 +0000 | [diff] [blame] | 25 | sequence ``f(0), f(1), ...``. The same effect can be achieved in Python |
Raymond Hettinger | a6c6037 | 2008-03-13 01:26:19 +0000 | [diff] [blame] | 26 | by combining :func:`map` and :func:`count` to form ``map(f, count())``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 | |
Raymond Hettinger | 2c109ab | 2009-03-12 00:29:44 +0000 | [diff] [blame] | 28 | These tools and their built-in counterparts also work well with the high-speed |
| 29 | functions in the :mod:`operator` module. For example, the multiplication |
| 30 | operator can be mapped across two vectors to form an efficient dot-product: |
| 31 | ``sum(map(operator.mul, vector1, vector2))``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 32 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 33 | |
Raymond Hettinger | f76b920 | 2009-02-17 20:00:59 +0000 | [diff] [blame] | 34 | **Infinite Iterators:** |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 35 | |
Raymond Hettinger | 5bfd8ce | 2009-04-10 19:02:36 +0000 | [diff] [blame] | 36 | ================== ================= ================================================= ========================================= |
| 37 | Iterator Arguments Results Example |
| 38 | ================== ================= ================================================= ========================================= |
| 39 | :func:`count` start, [step] start, start+step, start+2*step, ... ``count(10) --> 10 11 12 13 14 ...`` |
| 40 | :func:`cycle` p p0, p1, ... plast, p0, p1, ... ``cycle('ABCD') --> A B C D A B C D ...`` |
| 41 | :func:`repeat` elem [,n] elem, elem, elem, ... endlessly or up to n times ``repeat(10, 3) --> 10 10 10`` |
| 42 | ================== ================= ================================================= ========================================= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 43 | |
Raymond Hettinger | f76b920 | 2009-02-17 20:00:59 +0000 | [diff] [blame] | 44 | **Iterators terminating on the shortest input sequence:** |
| 45 | |
Raymond Hettinger | 5bfd8ce | 2009-04-10 19:02:36 +0000 | [diff] [blame] | 46 | ==================== ============================ ================================================= ============================================================= |
| 47 | Iterator Arguments Results Example |
| 48 | ==================== ============================ ================================================= ============================================================= |
Raymond Hettinger | 5d44613 | 2011-03-27 18:52:10 -0700 | [diff] [blame] | 49 | :func:`accumulate` p [,func] p0, p0+p1, p0+p1+p2, ... ``accumulate([1,2,3,4,5]) --> 1 3 6 10 15`` |
Raymond Hettinger | 5bfd8ce | 2009-04-10 19:02:36 +0000 | [diff] [blame] | 50 | :func:`chain` p, q, ... p0, p1, ... plast, q0, q1, ... ``chain('ABC', 'DEF') --> A B C D E F`` |
| 51 | :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`` |
| 52 | :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`` |
Georg Brandl | c2da5ce | 2009-08-13 09:16:39 +0000 | [diff] [blame] | 53 | :func:`filterfalse` pred, seq elements of seq where pred(elem) is False ``filterfalse(lambda x: x%2, range(10)) --> 0 2 4 6 8`` |
Raymond Hettinger | 5bfd8ce | 2009-04-10 19:02:36 +0000 | [diff] [blame] | 54 | :func:`groupby` iterable[, keyfunc] sub-iterators grouped by value of keyfunc(v) |
| 55 | :func:`islice` seq, [start,] stop [, step] elements from seq[start:stop:step] ``islice('ABCDEFG', 2, None) --> C D E F G`` |
| 56 | :func:`starmap` func, seq func(\*seq[0]), func(\*seq[1]), ... ``starmap(pow, [(2,5), (3,2), (10,3)]) --> 32 9 1000`` |
| 57 | :func:`takewhile` pred, seq seq[0], seq[1], until pred fails ``takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4`` |
| 58 | :func:`tee` it, n it1, it2 , ... itn splits one iterator into n |
Georg Brandl | c2da5ce | 2009-08-13 09:16:39 +0000 | [diff] [blame] | 59 | :func:`zip_longest` p, q, ... (p[0], q[0]), (p[1], q[1]), ... ``zip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-`` |
Raymond Hettinger | 5bfd8ce | 2009-04-10 19:02:36 +0000 | [diff] [blame] | 60 | ==================== ============================ ================================================= ============================================================= |
Raymond Hettinger | f76b920 | 2009-02-17 20:00:59 +0000 | [diff] [blame] | 61 | |
| 62 | **Combinatoric generators:** |
| 63 | |
Raymond Hettinger | 7f587cd | 2009-04-10 19:43:50 +0000 | [diff] [blame] | 64 | ============================================== ==================== ============================================================= |
| 65 | Iterator Arguments Results |
| 66 | ============================================== ==================== ============================================================= |
| 67 | :func:`product` p, q, ... [repeat=1] cartesian product, equivalent to a nested for-loop |
| 68 | :func:`permutations` p[, r] r-length tuples, all possible orderings, no repeated elements |
Raymond Hettinger | 36c3c02 | 2009-11-19 01:20:07 +0000 | [diff] [blame] | 69 | :func:`combinations` p, r r-length tuples, in sorted order, no repeated elements |
| 70 | :func:`combinations_with_replacement` p, r r-length tuples, in sorted order, with repeated elements |
Raymond Hettinger | 7f587cd | 2009-04-10 19:43:50 +0000 | [diff] [blame] | 71 | ``product('ABCD', repeat=2)`` ``AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD`` |
| 72 | ``permutations('ABCD', 2)`` ``AB AC AD BA BC BD CA CB CD DA DB DC`` |
| 73 | ``combinations('ABCD', 2)`` ``AB AC AD BC BD CD`` |
| 74 | ``combinations_with_replacement('ABCD', 2)`` ``AA AB AC AD BB BC BD CC CD DD`` |
| 75 | ============================================== ==================== ============================================================= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 76 | |
| 77 | |
| 78 | .. _itertools-functions: |
| 79 | |
| 80 | Itertool functions |
| 81 | ------------------ |
| 82 | |
| 83 | The following module functions all construct and return iterators. Some provide |
| 84 | streams of infinite length, so they should only be accessed by functions or |
| 85 | loops that truncate the stream. |
| 86 | |
Raymond Hettinger | 5d44613 | 2011-03-27 18:52:10 -0700 | [diff] [blame] | 87 | .. function:: accumulate(iterable[, func]) |
Raymond Hettinger | adb8146 | 2010-12-01 22:50:36 +0000 | [diff] [blame] | 88 | |
Raymond Hettinger | 2d93e6e | 2010-12-03 02:33:53 +0000 | [diff] [blame] | 89 | Make an iterator that returns accumulated sums. Elements may be any addable |
Raymond Hettinger | 5d44613 | 2011-03-27 18:52:10 -0700 | [diff] [blame] | 90 | type including :class:`Decimal` or :class:`Fraction`. If the optional |
| 91 | *func* argument is supplied, it should be a function of two arguments |
| 92 | and it will be used instead of addition. |
Raymond Hettinger | adb8146 | 2010-12-01 22:50:36 +0000 | [diff] [blame] | 93 | |
Raymond Hettinger | 5d44613 | 2011-03-27 18:52:10 -0700 | [diff] [blame] | 94 | Equivalent to:: |
| 95 | |
| 96 | def accumulate(iterable, func=operator.add): |
Raymond Hettinger | adb8146 | 2010-12-01 22:50:36 +0000 | [diff] [blame] | 97 | 'Return running totals' |
Raymond Hettinger | d8ff465 | 2010-12-03 02:09:34 +0000 | [diff] [blame] | 98 | # accumulate([1,2,3,4,5]) --> 1 3 6 10 15 |
Raymond Hettinger | 5d44613 | 2011-03-27 18:52:10 -0700 | [diff] [blame] | 99 | # accumulate([1,2,3,4,5], operator.mul) --> 1 2 6 24 120 |
Raymond Hettinger | d8ff465 | 2010-12-03 02:09:34 +0000 | [diff] [blame] | 100 | it = iter(iterable) |
| 101 | total = next(it) |
| 102 | yield total |
| 103 | for element in it: |
Raymond Hettinger | 5d44613 | 2011-03-27 18:52:10 -0700 | [diff] [blame] | 104 | total = func(total, element) |
Raymond Hettinger | d8ff465 | 2010-12-03 02:09:34 +0000 | [diff] [blame] | 105 | yield total |
Raymond Hettinger | adb8146 | 2010-12-01 22:50:36 +0000 | [diff] [blame] | 106 | |
Raymond Hettinger | 5d44613 | 2011-03-27 18:52:10 -0700 | [diff] [blame] | 107 | Uses for the *func* argument include :func:`min` for a running minimum, |
| 108 | :func:`max` for a running maximum, and :func:`operator.mul` for a running |
| 109 | product:: |
| 110 | |
| 111 | >>> data = [3, 4, 6, 2, 1, 9, 0, 7, 5, 8] |
| 112 | >>> list(accumulate(data, operator.mul)) # running product |
| 113 | [3, 12, 72, 144, 144, 1296, 0, 0, 0, 0] |
| 114 | >>> list(accumulate(data, max)) # running maximum |
| 115 | [3, 4, 6, 6, 6, 9, 9, 9, 9, 9] |
| 116 | |
| 117 | # Amortize a 5% loan of 1000 with 4 annual payments of 90 |
| 118 | >>> cashflows = [1000, -90, -90, -90, -90] |
| 119 | >>> list(accumulate(cashflows, lambda bal, pmt: bal*1.05 + pmt)) |
| 120 | [1000, 960.0, 918.0, 873.9000000000001, 827.5950000000001] |
| 121 | |
Raymond Hettinger | adb8146 | 2010-12-01 22:50:36 +0000 | [diff] [blame] | 122 | .. versionadded:: 3.2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 123 | |
Raymond Hettinger | 5d44613 | 2011-03-27 18:52:10 -0700 | [diff] [blame] | 124 | .. versionchanged:: 3.3 |
| 125 | Added the optional *func* parameter. |
| 126 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 127 | .. function:: chain(*iterables) |
| 128 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 129 | Make an iterator that returns elements from the first iterable until it is |
| 130 | exhausted, then proceeds to the next iterable, until all of the iterables are |
| 131 | exhausted. Used for treating consecutive sequences as a single sequence. |
| 132 | Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 133 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 134 | def chain(*iterables): |
| 135 | # chain('ABC', 'DEF') --> A B C D E F |
| 136 | for it in iterables: |
| 137 | for element in it: |
| 138 | yield element |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 139 | |
| 140 | |
Georg Brandl | 933b974 | 2010-07-29 14:36:11 +0000 | [diff] [blame] | 141 | .. classmethod:: chain.from_iterable(iterable) |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 142 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 143 | Alternate constructor for :func:`chain`. Gets chained inputs from a |
| 144 | single iterable argument that is evaluated lazily. Equivalent to:: |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 145 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 146 | @classmethod |
| 147 | def from_iterable(iterables): |
| 148 | # chain.from_iterable(['ABC', 'DEF']) --> A B C D E F |
| 149 | for it in iterables: |
| 150 | for element in it: |
| 151 | yield element |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 152 | |
Christian Heimes | 7864476 | 2008-03-04 23:39:23 +0000 | [diff] [blame] | 153 | |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 154 | .. function:: combinations(iterable, r) |
| 155 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 156 | Return *r* length subsequences of elements from the input *iterable*. |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 157 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 158 | Combinations are emitted in lexicographic sort order. So, if the |
| 159 | input *iterable* is sorted, the combination tuples will be produced |
| 160 | in sorted order. |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 161 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 162 | Elements are treated as unique based on their position, not on their |
| 163 | value. So if the input elements are unique, there will be no repeat |
| 164 | values in each combination. |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 165 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 166 | Equivalent to:: |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 167 | |
| 168 | def combinations(iterable, r): |
Raymond Hettinger | dd1150e | 2008-03-13 02:39:40 +0000 | [diff] [blame] | 169 | # combinations('ABCD', 2) --> AB AC AD BC BD CD |
| 170 | # combinations(range(4), 3) --> 012 013 023 123 |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 171 | pool = tuple(iterable) |
Christian Heimes | 380f7f2 | 2008-02-28 11:19:05 +0000 | [diff] [blame] | 172 | n = len(pool) |
Raymond Hettinger | 5bad41e | 2009-01-08 21:01:54 +0000 | [diff] [blame] | 173 | if r > n: |
| 174 | return |
| 175 | indices = list(range(r)) |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 176 | yield tuple(pool[i] for i in indices) |
Raymond Hettinger | cf984ce | 2009-02-18 20:56:51 +0000 | [diff] [blame] | 177 | while True: |
Christian Heimes | 380f7f2 | 2008-02-28 11:19:05 +0000 | [diff] [blame] | 178 | for i in reversed(range(r)): |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 179 | if indices[i] != i + n - r: |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 180 | break |
Christian Heimes | 380f7f2 | 2008-02-28 11:19:05 +0000 | [diff] [blame] | 181 | else: |
| 182 | return |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 183 | indices[i] += 1 |
Christian Heimes | 380f7f2 | 2008-02-28 11:19:05 +0000 | [diff] [blame] | 184 | for j in range(i+1, r): |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 185 | indices[j] = indices[j-1] + 1 |
| 186 | yield tuple(pool[i] for i in indices) |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 187 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 188 | The code for :func:`combinations` can be also expressed as a subsequence |
| 189 | of :func:`permutations` after filtering entries where the elements are not |
| 190 | in sorted order (according to their position in the input pool):: |
Christian Heimes | 7864476 | 2008-03-04 23:39:23 +0000 | [diff] [blame] | 191 | |
| 192 | def combinations(iterable, r): |
| 193 | pool = tuple(iterable) |
| 194 | n = len(pool) |
| 195 | for indices in permutations(range(n), r): |
| 196 | if sorted(indices) == list(indices): |
| 197 | yield tuple(pool[i] for i in indices) |
| 198 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 199 | The number of items returned is ``n! / r! / (n-r)!`` when ``0 <= r <= n`` |
| 200 | or zero when ``r > n``. |
Christian Heimes | 836baa5 | 2008-02-26 08:18:30 +0000 | [diff] [blame] | 201 | |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 202 | .. function:: combinations_with_replacement(iterable, r) |
| 203 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 204 | Return *r* length subsequences of elements from the input *iterable* |
| 205 | allowing individual elements to be repeated more than once. |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 206 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 207 | Combinations are emitted in lexicographic sort order. So, if the |
| 208 | input *iterable* is sorted, the combination tuples will be produced |
| 209 | in sorted order. |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 210 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 211 | Elements are treated as unique based on their position, not on their |
| 212 | value. So if the input elements are unique, the generated combinations |
| 213 | will also be unique. |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 214 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 215 | Equivalent to:: |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 216 | |
| 217 | def combinations_with_replacement(iterable, r): |
| 218 | # combinations_with_replacement('ABC', 2) --> AA AB AC BB BC CC |
| 219 | pool = tuple(iterable) |
| 220 | n = len(pool) |
| 221 | if not n and r: |
| 222 | return |
| 223 | indices = [0] * r |
| 224 | yield tuple(pool[i] for i in indices) |
Raymond Hettinger | cf984ce | 2009-02-18 20:56:51 +0000 | [diff] [blame] | 225 | while True: |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 226 | for i in reversed(range(r)): |
| 227 | if indices[i] != n - 1: |
| 228 | break |
| 229 | else: |
| 230 | return |
| 231 | indices[i:] = [indices[i] + 1] * (r - i) |
| 232 | yield tuple(pool[i] for i in indices) |
| 233 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 234 | The code for :func:`combinations_with_replacement` can be also expressed as |
| 235 | a subsequence of :func:`product` after filtering entries where the elements |
| 236 | are not in sorted order (according to their position in the input pool):: |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 237 | |
| 238 | def combinations_with_replacement(iterable, r): |
| 239 | pool = tuple(iterable) |
| 240 | n = len(pool) |
| 241 | for indices in product(range(n), repeat=r): |
| 242 | if sorted(indices) == list(indices): |
| 243 | yield tuple(pool[i] for i in indices) |
| 244 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 245 | The number of items returned is ``(n+r-1)! / r! / (n-1)!`` when ``n > 0``. |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 246 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 247 | .. versionadded:: 3.1 |
Raymond Hettinger | d07d939 | 2009-01-27 04:20:44 +0000 | [diff] [blame] | 248 | |
Georg Brandl | 67b21b7 | 2010-08-17 15:07:14 +0000 | [diff] [blame] | 249 | |
Raymond Hettinger | 6b3b0fc | 2009-01-26 02:56:58 +0000 | [diff] [blame] | 250 | .. function:: compress(data, selectors) |
| 251 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 252 | Make an iterator that filters elements from *data* returning only those that |
| 253 | have a corresponding element in *selectors* that evaluates to ``True``. |
| 254 | Stops when either the *data* or *selectors* iterables has been exhausted. |
| 255 | Equivalent to:: |
Raymond Hettinger | 6b3b0fc | 2009-01-26 02:56:58 +0000 | [diff] [blame] | 256 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 257 | def compress(data, selectors): |
| 258 | # compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F |
| 259 | return (d for d, s in zip(data, selectors) if s) |
Raymond Hettinger | 6b3b0fc | 2009-01-26 02:56:58 +0000 | [diff] [blame] | 260 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 261 | .. versionadded:: 3.1 |
Raymond Hettinger | 6b3b0fc | 2009-01-26 02:56:58 +0000 | [diff] [blame] | 262 | |
| 263 | |
Raymond Hettinger | 9e8dbbc | 2009-02-14 04:21:49 +0000 | [diff] [blame] | 264 | .. function:: count(start=0, step=1) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 265 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 266 | Make an iterator that returns evenly spaced values starting with *n*. Often |
| 267 | used as an argument to :func:`map` to generate consecutive data points. |
| 268 | Also, used with :func:`zip` to add sequence numbers. Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 269 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 270 | def count(start=0, step=1): |
| 271 | # count(10) --> 10 11 12 13 14 ... |
Georg Brandl | 37a80dc | 2011-01-13 07:31:18 +0000 | [diff] [blame] | 272 | # count(2.5, 0.5) -> 2.5 3.0 3.5 ... |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 273 | n = start |
| 274 | while True: |
| 275 | yield n |
| 276 | n += step |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 277 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 278 | When counting with floating point numbers, better accuracy can sometimes be |
| 279 | achieved by substituting multiplicative code such as: ``(start + step * i |
| 280 | for i in count())``. |
Raymond Hettinger | 5bc472a | 2009-06-17 01:40:52 +0000 | [diff] [blame] | 281 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 282 | .. versionchanged:: 3.1 |
| 283 | Added *step* argument and allowed non-integer arguments. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 284 | |
| 285 | .. function:: cycle(iterable) |
| 286 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 287 | Make an iterator returning elements from the iterable and saving a copy of each. |
| 288 | When the iterable is exhausted, return elements from the saved copy. Repeats |
| 289 | indefinitely. Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 290 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 291 | def cycle(iterable): |
| 292 | # cycle('ABCD') --> A B C D A B C D A B C D ... |
| 293 | saved = [] |
| 294 | for element in iterable: |
| 295 | yield element |
| 296 | saved.append(element) |
| 297 | while saved: |
| 298 | for element in saved: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 299 | yield element |
| 300 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 301 | Note, this member of the toolkit may require significant auxiliary storage |
| 302 | (depending on the length of the iterable). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 303 | |
| 304 | |
| 305 | .. function:: dropwhile(predicate, iterable) |
| 306 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 307 | Make an iterator that drops elements from the iterable as long as the predicate |
| 308 | is true; afterwards, returns every element. Note, the iterator does not produce |
| 309 | *any* output until the predicate first becomes false, so it may have a lengthy |
| 310 | start-up time. Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 311 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 312 | def dropwhile(predicate, iterable): |
| 313 | # dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1 |
| 314 | iterable = iter(iterable) |
| 315 | for x in iterable: |
| 316 | if not predicate(x): |
| 317 | yield x |
| 318 | break |
| 319 | for x in iterable: |
| 320 | yield x |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 321 | |
Raymond Hettinger | 749761e | 2009-01-27 04:42:48 +0000 | [diff] [blame] | 322 | .. function:: filterfalse(predicate, iterable) |
| 323 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 324 | Make an iterator that filters elements from iterable returning only those for |
| 325 | which the predicate is ``False``. If *predicate* is ``None``, return the items |
| 326 | that are false. Equivalent to:: |
Raymond Hettinger | 749761e | 2009-01-27 04:42:48 +0000 | [diff] [blame] | 327 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 328 | def filterfalse(predicate, iterable): |
| 329 | # filterfalse(lambda x: x%2, range(10)) --> 0 2 4 6 8 |
| 330 | if predicate is None: |
| 331 | predicate = bool |
| 332 | for x in iterable: |
| 333 | if not predicate(x): |
| 334 | yield x |
Raymond Hettinger | 749761e | 2009-01-27 04:42:48 +0000 | [diff] [blame] | 335 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 336 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 337 | .. function:: groupby(iterable, key=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 338 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 339 | Make an iterator that returns consecutive keys and groups from the *iterable*. |
| 340 | The *key* is a function computing a key value for each element. If not |
| 341 | specified or is ``None``, *key* defaults to an identity function and returns |
| 342 | the element unchanged. Generally, the iterable needs to already be sorted on |
| 343 | the same key function. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 344 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 345 | The operation of :func:`groupby` is similar to the ``uniq`` filter in Unix. It |
| 346 | generates a break or new group every time the value of the key function changes |
| 347 | (which is why it is usually necessary to have sorted the data using the same key |
| 348 | function). That behavior differs from SQL's GROUP BY which aggregates common |
| 349 | elements regardless of their input order. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 350 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 351 | The returned group is itself an iterator that shares the underlying iterable |
| 352 | with :func:`groupby`. Because the source is shared, when the :func:`groupby` |
| 353 | object is advanced, the previous group is no longer visible. So, if that data |
| 354 | is needed later, it should be stored as a list:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 355 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 356 | groups = [] |
| 357 | uniquekeys = [] |
| 358 | data = sorted(data, key=keyfunc) |
| 359 | for k, g in groupby(data, keyfunc): |
| 360 | groups.append(list(g)) # Store group iterator as a list |
| 361 | uniquekeys.append(k) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 362 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 363 | :func:`groupby` is equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 364 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 365 | class groupby: |
| 366 | # [k for k, g in groupby('AAAABBBCCDAABBB')] --> A B C D A B |
| 367 | # [list(g) for k, g in groupby('AAAABBBCCD')] --> AAAA BBB CC D |
| 368 | def __init__(self, iterable, key=None): |
| 369 | if key is None: |
| 370 | key = lambda x: x |
| 371 | self.keyfunc = key |
| 372 | self.it = iter(iterable) |
| 373 | self.tgtkey = self.currkey = self.currvalue = object() |
| 374 | def __iter__(self): |
| 375 | return self |
| 376 | def __next__(self): |
| 377 | while self.currkey == self.tgtkey: |
| 378 | self.currvalue = next(self.it) # Exit on StopIteration |
| 379 | self.currkey = self.keyfunc(self.currvalue) |
| 380 | self.tgtkey = self.currkey |
| 381 | return (self.currkey, self._grouper(self.tgtkey)) |
| 382 | def _grouper(self, tgtkey): |
| 383 | while self.currkey == tgtkey: |
| 384 | yield self.currvalue |
| 385 | self.currvalue = next(self.it) # Exit on StopIteration |
| 386 | self.currkey = self.keyfunc(self.currvalue) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 387 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 388 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 389 | .. function:: islice(iterable, [start,] stop [, step]) |
| 390 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 391 | Make an iterator that returns selected elements from the iterable. If *start* is |
| 392 | non-zero, then elements from the iterable are skipped until start is reached. |
| 393 | Afterward, elements are returned consecutively unless *step* is set higher than |
| 394 | one which results in items being skipped. If *stop* is ``None``, then iteration |
| 395 | continues until the iterator is exhausted, if at all; otherwise, it stops at the |
| 396 | specified position. Unlike regular slicing, :func:`islice` does not support |
| 397 | negative values for *start*, *stop*, or *step*. Can be used to extract related |
| 398 | fields from data where the internal structure has been flattened (for example, a |
| 399 | multi-line report may list a name field on every third line). Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 400 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 401 | def islice(iterable, *args): |
| 402 | # islice('ABCDEFG', 2) --> A B |
| 403 | # islice('ABCDEFG', 2, 4) --> C D |
| 404 | # islice('ABCDEFG', 2, None) --> C D E F G |
| 405 | # islice('ABCDEFG', 0, None, 2) --> A C E G |
| 406 | s = slice(*args) |
| 407 | it = iter(range(s.start or 0, s.stop or sys.maxsize, s.step or 1)) |
| 408 | nexti = next(it) |
| 409 | for i, element in enumerate(iterable): |
| 410 | if i == nexti: |
| 411 | yield element |
| 412 | nexti = next(it) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 413 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 414 | If *start* is ``None``, then iteration starts at zero. If *step* is ``None``, |
| 415 | then the step defaults to one. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 416 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 417 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 418 | .. function:: permutations(iterable, r=None) |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 419 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 420 | Return successive *r* length permutations of elements in the *iterable*. |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 421 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 422 | If *r* is not specified or is ``None``, then *r* defaults to the length |
| 423 | of the *iterable* and all possible full-length permutations |
| 424 | are generated. |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 425 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 426 | Permutations are emitted in lexicographic sort order. So, if the |
| 427 | input *iterable* is sorted, the permutation tuples will be produced |
| 428 | in sorted order. |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 429 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 430 | Elements are treated as unique based on their position, not on their |
| 431 | value. So if the input elements are unique, there will be no repeat |
| 432 | values in each permutation. |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 433 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 434 | Equivalent to:: |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 435 | |
| 436 | def permutations(iterable, r=None): |
Raymond Hettinger | dd1150e | 2008-03-13 02:39:40 +0000 | [diff] [blame] | 437 | # permutations('ABCD', 2) --> AB AC AD BA BC BD CA CB CD DA DB DC |
| 438 | # permutations(range(3)) --> 012 021 102 120 201 210 |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 439 | pool = tuple(iterable) |
| 440 | n = len(pool) |
| 441 | r = n if r is None else r |
Raymond Hettinger | 5bad41e | 2009-01-08 21:01:54 +0000 | [diff] [blame] | 442 | if r > n: |
| 443 | return |
| 444 | indices = list(range(n)) |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 445 | cycles = range(n, n-r, -1) |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 446 | yield tuple(pool[i] for i in indices[:r]) |
| 447 | while n: |
| 448 | for i in reversed(range(r)): |
| 449 | cycles[i] -= 1 |
| 450 | if cycles[i] == 0: |
| 451 | indices[i:] = indices[i+1:] + indices[i:i+1] |
| 452 | cycles[i] = n - i |
| 453 | else: |
| 454 | j = cycles[i] |
| 455 | indices[i], indices[-j] = indices[-j], indices[i] |
| 456 | yield tuple(pool[i] for i in indices[:r]) |
| 457 | break |
| 458 | else: |
| 459 | return |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 460 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 461 | The code for :func:`permutations` can be also expressed as a subsequence of |
| 462 | :func:`product`, filtered to exclude entries with repeated elements (those |
| 463 | from the same position in the input pool):: |
Christian Heimes | 7864476 | 2008-03-04 23:39:23 +0000 | [diff] [blame] | 464 | |
| 465 | def permutations(iterable, r=None): |
| 466 | pool = tuple(iterable) |
| 467 | n = len(pool) |
| 468 | r = n if r is None else r |
| 469 | for indices in product(range(n), repeat=r): |
| 470 | if len(set(indices)) == r: |
| 471 | yield tuple(pool[i] for i in indices) |
| 472 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 473 | The number of items returned is ``n! / (n-r)!`` when ``0 <= r <= n`` |
| 474 | or zero when ``r > n``. |
Christian Heimes | 70e7ea2 | 2008-02-28 20:02:27 +0000 | [diff] [blame] | 475 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 476 | .. function:: product(*iterables, repeat=1) |
Christian Heimes | 90c3d9b | 2008-02-23 13:18:03 +0000 | [diff] [blame] | 477 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 478 | Cartesian product of input iterables. |
Christian Heimes | 90c3d9b | 2008-02-23 13:18:03 +0000 | [diff] [blame] | 479 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 480 | Equivalent to nested for-loops in a generator expression. For example, |
| 481 | ``product(A, B)`` returns the same as ``((x,y) for x in A for y in B)``. |
Christian Heimes | 90c3d9b | 2008-02-23 13:18:03 +0000 | [diff] [blame] | 482 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 483 | The nested loops cycle like an odometer with the rightmost element advancing |
| 484 | on every iteration. This pattern creates a lexicographic ordering so that if |
| 485 | the input's iterables are sorted, the product tuples are emitted in sorted |
| 486 | order. |
Christian Heimes | 90c3d9b | 2008-02-23 13:18:03 +0000 | [diff] [blame] | 487 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 488 | To compute the product of an iterable with itself, specify the number of |
| 489 | repetitions with the optional *repeat* keyword argument. For example, |
| 490 | ``product(A, repeat=4)`` means the same as ``product(A, A, A, A)``. |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 491 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 492 | This function is equivalent to the following code, except that the |
| 493 | actual implementation does not build up intermediate results in memory:: |
Christian Heimes | 90c3d9b | 2008-02-23 13:18:03 +0000 | [diff] [blame] | 494 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 495 | def product(*args, repeat=1): |
| 496 | # product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy |
| 497 | # product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111 |
| 498 | pools = [tuple(pool) for pool in args] * repeat |
| 499 | result = [[]] |
| 500 | for pool in pools: |
| 501 | result = [x+[y] for x in result for y in pool] |
| 502 | for prod in result: |
| 503 | yield tuple(prod) |
Christian Heimes | 90c3d9b | 2008-02-23 13:18:03 +0000 | [diff] [blame] | 504 | |
| 505 | |
Raymond Hettinger | d75ad44 | 2009-06-01 19:16:52 +0000 | [diff] [blame] | 506 | .. function:: repeat(object[, times]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 507 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 508 | Make an iterator that returns *object* over and over again. Runs indefinitely |
| 509 | unless the *times* argument is specified. Used as argument to :func:`map` for |
| 510 | invariant parameters to the called function. Also used with :func:`zip` to |
| 511 | create an invariant part of a tuple record. Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 512 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 513 | def repeat(object, times=None): |
| 514 | # repeat(10, 3) --> 10 10 10 |
| 515 | if times is None: |
| 516 | while True: |
| 517 | yield object |
| 518 | else: |
| 519 | for i in range(times): |
| 520 | yield object |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 521 | |
| 522 | |
| 523 | .. function:: starmap(function, iterable) |
| 524 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 525 | Make an iterator that computes the function using arguments obtained from |
| 526 | the iterable. Used instead of :func:`map` when argument parameters are already |
| 527 | grouped in tuples from a single iterable (the data has been "pre-zipped"). The |
| 528 | difference between :func:`map` and :func:`starmap` parallels the distinction |
| 529 | between ``function(a,b)`` and ``function(*c)``. Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 530 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 531 | def starmap(function, iterable): |
| 532 | # starmap(pow, [(2,5), (3,2), (10,3)]) --> 32 9 1000 |
| 533 | for args in iterable: |
| 534 | yield function(*args) |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 535 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 536 | |
| 537 | .. function:: takewhile(predicate, iterable) |
| 538 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 539 | Make an iterator that returns elements from the iterable as long as the |
| 540 | predicate is true. Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 541 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 542 | def takewhile(predicate, iterable): |
| 543 | # takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4 |
| 544 | for x in iterable: |
| 545 | if predicate(x): |
| 546 | yield x |
| 547 | else: |
| 548 | break |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 549 | |
| 550 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 551 | .. function:: tee(iterable, n=2) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 552 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 553 | Return *n* independent iterators from a single iterable. Equivalent to:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 554 | |
Raymond Hettinger | cf984ce | 2009-02-18 20:56:51 +0000 | [diff] [blame] | 555 | def tee(iterable, n=2): |
| 556 | it = iter(iterable) |
| 557 | deques = [collections.deque() for i in range(n)] |
| 558 | def gen(mydeque): |
| 559 | while True: |
| 560 | if not mydeque: # when the local deque is empty |
| 561 | newval = next(it) # fetch a new value and |
| 562 | for d in deques: # load it to all the deques |
| 563 | d.append(newval) |
| 564 | yield mydeque.popleft() |
| 565 | return tuple(gen(d) for d in deques) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 566 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 567 | Once :func:`tee` has made a split, the original *iterable* should not be |
| 568 | used anywhere else; otherwise, the *iterable* could get advanced without |
| 569 | the tee objects being informed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 570 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 571 | This itertool may require significant auxiliary storage (depending on how |
| 572 | much temporary data needs to be stored). In general, if one iterator uses |
| 573 | most or all of the data before another iterator starts, it is faster to use |
| 574 | :func:`list` instead of :func:`tee`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 575 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 576 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 577 | .. function:: zip_longest(*iterables, fillvalue=None) |
Raymond Hettinger | 749761e | 2009-01-27 04:42:48 +0000 | [diff] [blame] | 578 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 579 | Make an iterator that aggregates elements from each of the iterables. If the |
| 580 | iterables are of uneven length, missing values are filled-in with *fillvalue*. |
| 581 | Iteration continues until the longest iterable is exhausted. Equivalent to:: |
Raymond Hettinger | 749761e | 2009-01-27 04:42:48 +0000 | [diff] [blame] | 582 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 583 | def zip_longest(*args, fillvalue=None): |
| 584 | # zip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D- |
| 585 | def sentinel(counter = ([fillvalue]*(len(args)-1)).pop): |
| 586 | yield counter() # yields the fillvalue, or raises IndexError |
| 587 | fillers = repeat(fillvalue) |
| 588 | iters = [chain(it, sentinel(), fillers) for it in args] |
| 589 | try: |
| 590 | for tup in zip(*iters): |
| 591 | yield tup |
| 592 | except IndexError: |
| 593 | pass |
Raymond Hettinger | 749761e | 2009-01-27 04:42:48 +0000 | [diff] [blame] | 594 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 595 | If one of the iterables is potentially infinite, then the :func:`zip_longest` |
| 596 | function should be wrapped with something that limits the number of calls |
| 597 | (for example :func:`islice` or :func:`takewhile`). If not specified, |
| 598 | *fillvalue* defaults to ``None``. |
Raymond Hettinger | 749761e | 2009-01-27 04:42:48 +0000 | [diff] [blame] | 599 | |
| 600 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 601 | .. _itertools-recipes: |
| 602 | |
Raymond Hettinger | 1fa7682 | 2010-12-06 23:31:36 +0000 | [diff] [blame] | 603 | Itertools Recipes |
| 604 | ----------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 605 | |
| 606 | This section shows recipes for creating an extended toolset using the existing |
| 607 | itertools as building blocks. |
| 608 | |
| 609 | The extended tools offer the same high performance as the underlying toolset. |
| 610 | The superior memory performance is kept by processing elements one at a time |
| 611 | rather than bringing the whole iterable into memory all at once. Code volume is |
| 612 | kept small by linking the tools together in a functional style which helps |
| 613 | eliminate temporary variables. High speed is retained by preferring |
Georg Brandl | 9afde1c | 2007-11-01 20:32:30 +0000 | [diff] [blame] | 614 | "vectorized" building blocks over the use of for-loops and :term:`generator`\s |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 615 | which incur interpreter overhead. |
| 616 | |
| 617 | .. testcode:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 618 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 619 | def take(n, iterable): |
| 620 | "Return first n items of the iterable as a list" |
| 621 | return list(islice(iterable, n)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 622 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 623 | def tabulate(function, start=0): |
| 624 | "Return function(0), function(1), ..." |
| 625 | return map(function, count(start)) |
Raymond Hettinger | dd1150e | 2008-03-13 02:39:40 +0000 | [diff] [blame] | 626 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 627 | def consume(iterator, n): |
| 628 | "Advance the iterator n-steps ahead. If n is none, consume entirely." |
| 629 | # Use functions that consume iterators at C speed. |
| 630 | if n is None: |
| 631 | # feed the entire iterator into a zero-length deque |
| 632 | collections.deque(iterator, maxlen=0) |
| 633 | else: |
| 634 | # advance to the empty slice starting at position n |
| 635 | next(islice(iterator, n, n), None) |
Raymond Hettinger | fa00796 | 2009-03-09 11:55:25 +0000 | [diff] [blame] | 636 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 637 | def nth(iterable, n, default=None): |
| 638 | "Returns the nth item or a default value" |
| 639 | return next(islice(iterable, n, None), default) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 640 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 641 | def quantify(iterable, pred=bool): |
| 642 | "Count how many times the predicate is true" |
| 643 | return sum(map(pred, iterable)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 644 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 645 | def padnone(iterable): |
| 646 | """Returns the sequence elements and then returns None indefinitely. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 647 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 648 | Useful for emulating the behavior of the built-in map() function. |
| 649 | """ |
| 650 | return chain(iterable, repeat(None)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 651 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 652 | def ncycles(iterable, n): |
| 653 | "Returns the sequence elements n times" |
| 654 | return chain.from_iterable(repeat(tuple(iterable), n)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 655 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 656 | def dotproduct(vec1, vec2): |
| 657 | return sum(map(operator.mul, vec1, vec2)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 658 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 659 | def flatten(listOfLists): |
| 660 | "Flatten one level of nesting" |
| 661 | return chain.from_iterable(listOfLists) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 662 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 663 | def repeatfunc(func, times=None, *args): |
| 664 | """Repeat calls to func with specified arguments. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 665 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 666 | Example: repeatfunc(random.random) |
| 667 | """ |
| 668 | if times is None: |
| 669 | return starmap(func, repeat(args)) |
| 670 | return starmap(func, repeat(args, times)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 671 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 672 | def pairwise(iterable): |
| 673 | "s -> (s0,s1), (s1,s2), (s2, s3), ..." |
| 674 | a, b = tee(iterable) |
| 675 | next(b, None) |
| 676 | return zip(a, b) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 677 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 678 | def grouper(n, iterable, fillvalue=None): |
| 679 | "grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx" |
| 680 | args = [iter(iterable)] * n |
| 681 | return zip_longest(*args, fillvalue=fillvalue) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 682 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 683 | def roundrobin(*iterables): |
| 684 | "roundrobin('ABC', 'D', 'EF') --> A D E B F C" |
| 685 | # Recipe credited to George Sakkis |
| 686 | pending = len(iterables) |
| 687 | nexts = cycle(iter(it).__next__ for it in iterables) |
| 688 | while pending: |
| 689 | try: |
| 690 | for next in nexts: |
| 691 | yield next() |
| 692 | except StopIteration: |
| 693 | pending -= 1 |
| 694 | nexts = cycle(islice(nexts, pending)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 695 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 696 | def partition(pred, iterable): |
| 697 | 'Use a predicate to partition entries into false entries and true entries' |
| 698 | # partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 |
| 699 | t1, t2 = tee(iterable) |
| 700 | return filterfalse(pred, t1), filter(pred, t2) |
Raymond Hettinger | 5ce0aa2 | 2010-12-01 10:49:19 +0000 | [diff] [blame] | 701 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 702 | def powerset(iterable): |
| 703 | "powerset([1,2,3]) --> () (1,) (2,) (3,) (1,2) (1,3) (2,3) (1,2,3)" |
| 704 | s = list(iterable) |
| 705 | return chain.from_iterable(combinations(s, r) for r in range(len(s)+1)) |
Raymond Hettinger | 08d01ee | 2010-08-07 05:36:53 +0000 | [diff] [blame] | 706 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 707 | def unique_everseen(iterable, key=None): |
| 708 | "List unique elements, preserving order. Remember all elements ever seen." |
| 709 | # unique_everseen('AAAABBBCCDAABBB') --> A B C D |
| 710 | # unique_everseen('ABBCcAD', str.lower) --> A B C D |
| 711 | seen = set() |
| 712 | seen_add = seen.add |
| 713 | if key is None: |
| 714 | for element in filterfalse(seen.__contains__, iterable): |
| 715 | seen_add(element) |
| 716 | yield element |
| 717 | else: |
| 718 | for element in iterable: |
| 719 | k = key(element) |
| 720 | if k not in seen: |
| 721 | seen_add(k) |
| 722 | yield element |
Christian Heimes | 90c3d9b | 2008-02-23 13:18:03 +0000 | [diff] [blame] | 723 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 724 | def unique_justseen(iterable, key=None): |
| 725 | "List unique elements, preserving order. Remember only the element just seen." |
| 726 | # unique_justseen('AAAABBBCCDAABBB') --> A B C D A B |
| 727 | # unique_justseen('ABBCcAD', str.lower) --> A B C A D |
| 728 | return map(next, map(itemgetter(1), groupby(iterable, key))) |
Raymond Hettinger | ad9d96b | 2009-01-02 21:39:07 +0000 | [diff] [blame] | 729 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 730 | def iter_except(func, exception, first=None): |
| 731 | """ Call a function repeatedly until an exception is raised. |
Raymond Hettinger | fc91aa2 | 2010-03-28 18:27:13 +0000 | [diff] [blame] | 732 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 733 | Converts a call-until-exception interface to an iterator interface. |
| 734 | Like __builtin__.iter(func, sentinel) but uses an exception instead |
| 735 | of a sentinel to end the loop. |
Raymond Hettinger | fc91aa2 | 2010-03-28 18:27:13 +0000 | [diff] [blame] | 736 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 737 | Examples: |
| 738 | iter_except(functools.partial(heappop, h), IndexError) # priority queue iterator |
| 739 | iter_except(d.popitem, KeyError) # non-blocking dict iterator |
| 740 | iter_except(d.popleft, IndexError) # non-blocking deque iterator |
| 741 | iter_except(q.get_nowait, Queue.Empty) # loop over a producer Queue |
| 742 | iter_except(s.pop, KeyError) # non-blocking set iterator |
Raymond Hettinger | fc91aa2 | 2010-03-28 18:27:13 +0000 | [diff] [blame] | 743 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 744 | """ |
| 745 | try: |
| 746 | if first is not None: |
| 747 | yield first() # For database APIs needing an initial cast to db.first() |
| 748 | while 1: |
| 749 | yield func() |
| 750 | except exception: |
| 751 | pass |
Raymond Hettinger | fc91aa2 | 2010-03-28 18:27:13 +0000 | [diff] [blame] | 752 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 753 | def random_product(*args, repeat=1): |
| 754 | "Random selection from itertools.product(*args, **kwds)" |
| 755 | pools = [tuple(pool) for pool in args] * repeat |
| 756 | return tuple(random.choice(pool) for pool in pools) |
Raymond Hettinger | fc91aa2 | 2010-03-28 18:27:13 +0000 | [diff] [blame] | 757 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 758 | def random_permutation(iterable, r=None): |
| 759 | "Random selection from itertools.permutations(iterable, r)" |
| 760 | pool = tuple(iterable) |
| 761 | r = len(pool) if r is None else r |
| 762 | return tuple(random.sample(pool, r)) |
Raymond Hettinger | 063a4b6 | 2010-04-02 04:18:18 +0000 | [diff] [blame] | 763 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 764 | def random_combination(iterable, r): |
| 765 | "Random selection from itertools.combinations(iterable, r)" |
| 766 | pool = tuple(iterable) |
| 767 | n = len(pool) |
| 768 | indices = sorted(random.sample(range(n), r)) |
| 769 | return tuple(pool[i] for i in indices) |
Raymond Hettinger | 063a4b6 | 2010-04-02 04:18:18 +0000 | [diff] [blame] | 770 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 771 | def random_combination_with_replacement(iterable, r): |
| 772 | "Random selection from itertools.combinations_with_replacement(iterable, r)" |
| 773 | pool = tuple(iterable) |
| 774 | n = len(pool) |
| 775 | indices = sorted(random.randrange(n) for i in range(r)) |
| 776 | return tuple(pool[i] for i in indices) |
Raymond Hettinger | 063a4b6 | 2010-04-02 04:18:18 +0000 | [diff] [blame] | 777 | |
Raymond Hettinger | fc91aa2 | 2010-03-28 18:27:13 +0000 | [diff] [blame] | 778 | Note, many of the above recipes can be optimized by replacing global lookups |
| 779 | with local variables defined as default values. For example, the |
| 780 | *dotproduct* recipe can be written as:: |
| 781 | |
Raymond Hettinger | 30c7362 | 2010-12-01 23:45:20 +0000 | [diff] [blame] | 782 | def dotproduct(vec1, vec2, sum=sum, map=map, mul=operator.mul): |
| 783 | return sum(map(mul, vec1, vec2)) |