Multiple Tuple to Two-Pair Tuple in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:48:00Z http://stackoverflow.com/feeds/question/756550 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python 3 Multiple Tuple to Two-Pair Tuple in Python? Dan 2009-04-16T15:02:38Z 2009-09-13T19:46:00Z <p>What is the nicest way of splitting this:</p> <pre><code>tuple = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h') </code></pre> <p>into this:</p> <pre><code>tuples = [('a', 'b'), ('c', 'd'), ('e', 'f'), ('g', 'h')] </code></pre> <p>Assuming that the input always has an even number of values.</p> http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/756580#756580 12 Answer by Peter Hoffmann for Multiple Tuple to Two-Pair Tuple in Python? Peter Hoffmann 2009-04-16T15:07:24Z 2009-04-16T15:07:24Z <pre><code>[(tuple[a], tuple[a+1]) for a in range(0,len(tuple),2)] </code></pre> http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/756602#756602 20 Answer by unbeknown for Multiple Tuple to Two-Pair Tuple in Python? unbeknown 2009-04-16T15:10:52Z 2009-04-16T15:10:52Z <p><code>zip()</code> is your friend:</p> <pre><code>t = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h') zip(t[::2], t[1::2]) </code></pre> http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/756701#756701 -1 Answer by bobince for Multiple Tuple to Two-Pair Tuple in Python? bobince 2009-04-16T15:35:14Z 2009-04-16T17:00:54Z <p>Here's a general recipe for any-size chunk, if it might not always be 2:</p> <pre><code>def chunk(seq, n): return [seq[i:i+n] for i in range(0, len(seq), n)] chunks= chunk(tuples, 2) </code></pre> <p>Or, if you enjoy iterators:</p> <pre><code>def iterchunk(iterable, n): it= iter(iterable) while True: chunk= [] try: for i in range(n): chunk.append(it.next()) except StopIteration: break finally: if len(chunk)!=0: yield tuple(chunk) </code></pre> http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/756704#756704 3 Answer by Andrew Jaffe for Multiple Tuple to Two-Pair Tuple in Python? Andrew Jaffe 2009-04-16T15:36:04Z 2009-04-16T15:36:04Z <p>Or, using <code>itertools</code> (see the <a href="http://docs.python.org/library/itertools.html#recipes" rel="nofollow">recipe</a> for <code>grouper</code>):</p> <pre><code>from itertools import izip def group2(iterable): args = [iter(iterable)] * 2 return izip(*args) tuples = [ab for ab in group2(tuple)] </code></pre> http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/1418667#1418667 0 Answer by Cristian Ciupitu for Multiple Tuple to Two-Pair Tuple in Python? Cristian Ciupitu 2009-09-13T19:46:00Z 2009-09-13T19:46:00Z <p>Using <a href="http://docs.python.org/library/itertools.html#itertools.groupby" rel="nofollow">itertools.groupby</a>:</p> <pre><code>import itertools def generate_keyfunc(n): """Returns a keyfunc that groups elements n by n""" i = itertools.count(0) def keyfunc(v): return i.next() / n return keyfunc t = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h') grouped_t = [tuple(g) for k, g in itertools.groupby(t, generate_keyfunc(2))] </code></pre> <p>I admit that this solution is a bit more complicated/long than other one liners, but it's more (memory) efficient. No partial or complete copies of the initial list/iterator are created.</p>