How to use Python's enumerate and zip to iterate over two lists and their indices.
enumerate - Iterate over indices and items of a listThe Python Cookbook (Recipe 4.4) describes how to iterate over items and indices in a list using
enumerate. For example:
alist = ['a1', 'a2', 'a3']
for i, a in enumerate(alist):
print i, a
0 a1 1 a2 2 a3
zip - Iterate over two lists in parallel
I previously wrote about using
zip to iterate over two lists
in parallel. Example:
alist = ['a1', 'a2', 'a3']
blist = ['b1', 'b2', 'b3']
for a, b in zip(alist, blist):
print a, b
a1 b1 a2 b2 a3 b3
enumerate with zip
Here is how to iterate over two lists and their indices using enumerate together with zip:
alist = ['a1', 'a2', 'a3']
blist = ['b1', 'b2', 'b3']
for i, (a, b) in enumerate(zip(alist, blist)):
print i, a, b
0 a1 b1 1 a2 b2 2 a3 b3
3
Comments
—
Comments feed for this post
#2 Jeremy Lewis commented on 2009-05-29:
>>> def foo():
... for i, x, y in izip(count(), a, b):
... pass
...
>>> def bar():
... for i, (x, y) in enumerate(zip(a, b)):
... pass
...
>>> delta(foo)
0.0213768482208
>>> delta(bar)
0.180979013443
where a = b = xrange(100000) and delta(f(x)) denotes the runtime in seconds of f(x).
Post a comment
About
I'm Eliot and this is my notepad for programming topics such as Python, Django, Ubuntu, Emacs, etc... more »
Search Blog
Tags
-
algorithms
(4)
-
aws
(8)
-
blogproject
(20)
-
c_cplusplus
(12)
-
cardstore
(8)
-
colinux
(2)
-
concurrency
(9)
-
conkeror
(2)
-
cygwin
(18)
-
datastructures
(15)
-
datetime
(3)
-
dell
(3)
-
django
(39)
-
emacs
(20)
-
files_directories
(10)
-
install_setup
(7)
-
javascript
(3)
-
keyboard
(6)
-
matplotlib
(5)
-
mercurial
(4)
-
nginx
(2)
-
preferences
(8)
-
processes
(3)
-
pyqt
(18)
-
python
(122)
-
ratpoison
(3)
-
regexes
(5)
-
rsync
(3)
-
softwaretools
(17)
-
sql
(13)
-
ssh
(7)
-
subversion
(6)
-
twisted
(6)
-
ubuntu
(60)
-
urxvt
(5)
-
vxworks
(25)
-
webservices
(4)
-
wmii
(7)
Blogroll
- Adam Gomaa
- Alex Clemesha
- Amir Salihefendic
- Armin Ronacher
- David Beazley
- David Ziegler
- Duncan McGreggor
- Gareth Rushgrave
- Glyph Lefkowitz
- Guido van Rossum
- Ian Bicking
- Jacob Kaplan-Moss
- James Bennett
- James Tauber
- Jesper Noehr
- Matt Harrison
- Nikolay Kolev
- Parand Darugar
- Peter Baumgartner
- Peter Bengtsson
- Rob Hudson
- Simon Willison
- Will McGugan
#1 Jeremy Lewis commented on 2009-05-29:
If you're working with last lists and/or memory is a concern, using the itertools module is an even better option.
yields the exact same result as above, but is faster and uses less memory.