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. :)