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

Specifically, I have two lists of strings that I'd like to combine into a string where each line is the next two strings from the lists, separated by spaces:

a = ['foo1', 'foo2', 'foo3']
b = ['bar1', 'bar2', 'bar3']

I want a function combine_to_lines() that would return:

"""foo1 bar1
foo2 bar2
foo3 bar3"""

I admit I've already solved this problem, so I'm going to post the answer. But perhaps someone else has a better one or sees a flaw in mine.

Update: I over-simplified my example above. In my real-world problem the lines were formatted in a more complicated manner that required the tuples returned from zip() to be unpacked. But kudos to mhawke for coming up to the simplest solution to this example.

share|improve this question
Uhhhh, should we have a question like this for every built in python function? – Triptych Jul 31 '09 at 2:39
Sure, why not? It's handy when a Stack Overflow question comes up on a Google search. – Daryl Spitzer Jul 31 '09 at 3:08
RTFMOverflow.com? – Glenn Maynard Jul 31 '09 at 3:38
@Daryl Spitzer: Don't give "kudos". That's silly. Select mhawke's answer as the correct answer. – S.Lott Jul 31 '09 at 10:11

7 Answers

up vote 7 down vote accepted

It's not necessary to unpack and repack the tuples returned by zip:

'\n'.join(' '.join(x) for x in zip(a, b))
share|improve this answer
>>> a = ['foo1', 'foo2', 'foo3']
>>> b = ['bar1', 'bar2', 'bar3']
>>> for i in zip(a,b):
...   print ' '.join(i)
...
foo1 bar1
foo2 bar2
foo3 bar3
share|improve this answer

The zip function "returns a list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables."

def combine_to_lines(list1, list2):
    return '\n'.join([' '.join((a, b)) for a, b in zip(list1, list2)])
share|improve this answer

Are you asking about the zip function?

share|improve this answer
1  
Yes. I couldn't remember it, and a Google search took a little time to jog my memory. Perhaps this question will come up in future searches. – Daryl Spitzer Jul 31 '09 at 2:35
it does, and helped jog my memory. so thank you. – asia1281 Jul 27 '12 at 18:00

Here's a one-liner. Could do x + ' ' + y if you were so inclined, not sure if it would be slower or not.

>>> a = ['foo1', 'foo2' , 'foo3']
>>> b = ['bar1', 'bar2', 'bar3']
>>> '\n'.join(' '.join([x,y]) for (x,y) in zip(a,b))
'foo1 bar1\nfoo2 bar2\nfoo3 bar3'
>>> print _
foo1 bar1
foo2 bar2
foo3 bar3
share|improve this answer
'\n'.join(((str(x) + ' ' + str(y)) for (x, y) in zip(a, b)))
share|improve this answer

Simple as:

" ".join([a[x] + " " + b[x] for x in range(len(a))])
share|improve this answer
where are the new lines? – mhawke Jul 31 '09 at 2:50

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.