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

Possible Duplicate:
how can I iterate through two lists in parallel in Python?

I have 2 lists:

l = ["a", "b", "c"]
m = ["x", "y", "z"]

And I want to iterate throught both at the same time, something like this:

for e, f in l, m:
    print e, f

Must show:

a x
b y
c z

The thing is that is totally illegal. How can I do something like this? (In a Pythonic way)

share|improve this question
yes.. is a duplicate.. sorry – Lucas Gabriel Sánchez Oct 15 '10 at 20:29

marked as duplicate by Mark Byers, Jochen Ritzel, wheaties, David Zaslavsky, nmichaels Oct 15 '10 at 20:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 4 down vote accepted

Look at itertools izip. It'll look like this

for i,j in izip( mylistA, mylistB ):
    print i + j

The zip function will also work but izip creates an iterator which does not force the creation of a third list.

share|improve this answer
zip creates iterator in py3k – SilentGhost Oct 15 '10 at 20:23
1  
print " ".join((i, j)) – systempuntoout Oct 15 '10 at 20:24

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