What is the nicest way of splitting this:
tuple = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
into this:
tuples = [('a', 'b'), ('c', 'd'), ('e', 'f'), ('g', 'h')]
Assuming that the input always has an even number of values.
|
1
|
What is the nicest way of splitting this:
into this:
Assuming that the input always has an even number of values.
|
||||
|
|
|
|
||||||||||
|
|
|
|
||
|
|
|
Here's a general recipe for any-size chunk, if it might not always be 2:
Or, if you enjoy iterators:
|
|||
|
|
Or, using
|
||
|
|
|
Using itertools.groupby:
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. |
||
|
|