Multiple Tuple to Two-Pair Tuple in Python? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:48:00Zhttp://stackoverflow.com/feeds/question/756550http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python3Multiple Tuple to Two-Pair Tuple in Python?Dan2009-04-16T15:02:38Z2009-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#75658012Answer by Peter Hoffmann for Multiple Tuple to Two-Pair Tuple in Python?Peter Hoffmann2009-04-16T15:07:24Z2009-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#75660220Answer by unbeknown for Multiple Tuple to Two-Pair Tuple in Python?unbeknown2009-04-16T15:10:52Z2009-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-1Answer by bobince for Multiple Tuple to Two-Pair Tuple in Python?bobince2009-04-16T15:35:14Z2009-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#7567043Answer by Andrew Jaffe for Multiple Tuple to Two-Pair Tuple in Python?Andrew Jaffe2009-04-16T15:36:04Z2009-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#14186670Answer by Cristian Ciupitu for Multiple Tuple to Two-Pair Tuple in Python?Cristian Ciupitu2009-09-13T19:46:00Z2009-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>