Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

so I'm fairly new to python (a couple of weeks) and have run into a problem which I myself can't find any solution to and cannot find anything on the web or in the documentation. My problem exists in joining a list. Now, i know that a list can be joined to make one long string as in:

    x = ['a', 'b', 'c', 'd']
    print ''.join(x)

Obviously this would output:

    'abcd'

however what I am trying to find a way to do is simply join the fist and second strings in the list, then join the third and fourth and so on. In short, from the above example instead achieve an output of:

    ['ab', 'cd']

Is there any simple way to do this? To my mind it seems as if it should be fairly simple (maybe the answer's staring me in the face and I'm just being a little thick here :p) I should probably also mention that the lengths of the strings in the list will be unpredictable, as will the number within the list, though the number of strings will always be evenSo the original list could just as well be:

    ['abcd', 'e', 'fg', 'hijklmn', 'opq', 'r'] 

or whatever. Anyways, any help at all would be greatly appreciated so thanks in advance. :)

share|improve this question
“I should probably also mention that the lengths of the strings in the list will be unpredictable” – So does the length matter? I.e. do you just want to join every pair of list elements, or do you actually want to look at the content and join as long as the resulting element stays below some special length limit? – poke May 1 '11 at 20:08
simply join every pair, i just thought that having not knowing the number of pairs could be a problem – John May 1 '11 at 20:14

4 Answers

up vote 18 down vote accepted

You can use slice notation with steps:

>>> x="abcdefghijklm"
>>> x[0::2] #0. 2. 4...
'acegikm'
>>> x[1::2] #1. 3. 5 ..
'bdfhjl'
>>> [i+j for i,j in zip(x[::2],x[1::2])] # zip makes (0,1),(2,3) ...
['ab', 'cd', 'ef', 'gh', 'ij', 'kl']

Same logic applies for lists too. String lenght doesn't matter, because you simply adding two strings together.

share|improve this answer
works beautifully, thank you :) – John May 1 '11 at 20:12
+1 this is one of the most beautiful one-liners I have seen in quite a while – blubb May 1 '11 at 20:16
1  
John, please accept his answer. He'll get more rep out of it and other people will know they don't need to answer. – e-satis May 1 '11 at 20:24
I had to wait 5 mins before it would let me :) – John May 1 '11 at 20:26
+1 for the slice notation – javadba Mar 7 at 14:04

Use an iterator.

List comprehension:

>>> si = iter(['abcd', 'e', 'fg', 'hijklmn', 'opq', 'r'])
>>> [c+next(si, '') for c in si]
['abcde', 'fghijklmn', 'opqr']
  • Very efficient for memory usage.
  • Exactly one traversal of s

Generator expression:

>>> si = iter(['abcd', 'e', 'fg', 'hijklmn', 'opq', 'r'])
>>> pair_iter = (c+next(si, '') for c in si)
>>> pair_iter # can be used in a for loop
<generator object at 0x4ccaa8>
>>> list(pair_iter) 
['abcde', 'fghijklmn', 'opqr']
  • use as an iterator

Using map, str._add_, iter

>>> si = iter(['abcd', 'e', 'fg', 'hijklmn', 'opq', 'r'])
>>> map(str.__add__, si, si)
['abcde', 'fghijklmn', 'opqr']

next(iterator[, default]) is available starting in Python 2.6

share|improve this answer
>>> lst =  ['abcd', 'e', 'fg', 'hijklmn', 'opq', 'r'] 
>>> print [lst[2*i]+lst[2*i+1] for i in range(len(lst)/2)]
['abcde', 'fghijklmn', 'opqr']
share|improve this answer
also nice.......I'm spoilt for choice :p – John May 1 '11 at 20:25

Without building temporary lists:

>>> import itertools
>>> s = 'abcdefgh'
>>> si = iter(s)
>>> [''.join(each) for each in itertools.izip(si, si)]
['ab', 'cd', 'ef', 'gh']

or:

>>> import itertools
>>> s = 'abcdefgh'
>>> si = iter(s)
>>> map(''.join, itertools.izip(si, si))
['ab', 'cd', 'ef', 'gh']
share|improve this answer
Nice, but considering my code leaves me starting with the original list anyway, i think ill opt for utdmr's....thank you though – John May 1 '11 at 20:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.