summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-04-02 02:37:33 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-04-02 02:37:33 (GMT)
commitce2338a16b697611f989d3ea8fcbb67a6237de1c (patch)
treee8bf56771bbf4a7d736415a9fa1a35347dd7ce6b
parent11d36bc135277adb62547a6c1d3c4ea8d21532dd (diff)
downloadcpython-ce2338a16b697611f989d3ea8fcbb67a6237de1c.zip
cpython-ce2338a16b697611f989d3ea8fcbb67a6237de1c.tar.gz
cpython-ce2338a16b697611f989d3ea8fcbb67a6237de1c.tar.bz2
Add and update itertools recipes.
-rw-r--r--Doc/library/itertools.rst24
1 files changed, 23 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index f3e107e2..993e86e 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -669,7 +669,8 @@ which incur interpreter overhead.
return sum(imap(operator.mul, vec1, vec2))
def flatten(listOfLists):
- return list(chain.from_iterable(listOfLists))
+ "Flatten one level of nesting"
+ return chain.from_iterable(listOfLists)
def repeatfunc(func, times=None, *args):
"""Repeat calls to func with specified arguments.
@@ -778,6 +779,27 @@ which incur interpreter overhead.
except exception:
pass
+ def random_product(*args, **kwds):
+ "Random selection from itertools.product(*args, **kwds)"
+ pools = map(tuple, args) * kwds.get('repeat', 1)
+ return map(random.choice, pools)
+
+ def random_permuation(iterable, r=None):
+ "Random selection from itertools.permutations(iterable, r)"
+ pool = list(iterable)
+ r = len(pool) if r is None else r
+ return random.sample(pool, r)
+
+ def random_combination(iterable, r):
+ "Random selection from itertools.combinations(iterable, r)"
+ pool = list(iterable)
+ return sorted(random.sample(pool, r), key=pool.index)
+
+ def random_combination_with_replacement(iterable, r):
+ "Random selection from itertools.combinations_with_replacement(iterable, r)"
+ pool = list(iterable)
+ return sorted(imap(random.choice, [pool]*r), key=pool.index)
+
Note, many of the above recipes can be optimized by replacing global lookups
with local variables defined as default values. For example, the
*dotproduct* recipe can be written as::