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

Possible Duplicates:
Iterate a list as pair (current, next) in Python
Iterating over every two elements in a list

Hi,

Is it possible to iterate a list in the following way in Python? (treat this code as pseudocode)

a = [5, 7, 11, 4, 5]
for v, w in a:
    print [v, w]

and it should produce

[5, 7]
[7, 11]
[11, 4]
[4, 5]

Thanks

share|improve this question

marked as duplicate by delnan, FMc, birryree, Gabe, the_drow Apr 23 '11 at 15:10

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.

5 Answers

up vote 12 down vote accepted

From itertools receipes:

from itertools import tee, izip
def pairwise(iterable):
    "s -> (s0,s1), (s1,s2), (s2, s3), ..."
    a, b = tee(iterable)
    next(b, None)
    return izip(a, b)

for v, w in pairwise(a):
    ...
share|improve this answer
+1: Very nice! itertools is the way to go! – Praveen Gollakota Apr 23 '11 at 15:05
Nice, but is not this overkilling?. What is the advantage of your approach relative to the simple for-loop in the answer from SanSS? I timed both and the speed was very similar (itertools wins by ca 10%, no big deal) – joaquin Apr 23 '11 at 19:02
@joaquin: The difference is that it works on iterators, not just sequences. That's not needed here, but you can hardly call that overkill. I just prefer iterators because I work with them all the time. – Jochen Ritzel Apr 23 '11 at 20:32

This is not possible. You should have tried it first.

To do that you should do:

a =  [5, 7, 11, 4, 5]
for i in range(len(a)-1):
    print [a[i], a[i+1]]
share|improve this answer
4  
+1 Simple is better than complex + Readability counts – joaquin Apr 23 '11 at 18:42

You can use zip function.

a = [5, 7, 11, 4, 5]
for v, w in zip(a[:-1], a[1:]):
    print [v, w]
share|improve this answer

Nearly verbatim from Iterate over pairs in a list (circular fashion) in Python:

def pairs(lst):
    i = iter(lst)
    prev = i.next()
    for item in i:
        yield prev, item
        prev = item
share|improve this answer
>>> a = [5, 7, 11, 4, 5]
>>> for n,k in enumerate(a[:-1]):
...     print a[n],a[n+1]
...
5 7
7 11
11 4
4 5
share|improve this answer

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