[EMAIL PROTECTED] wrote: > I'd like to iterate over a sequence by both element > and index, something like > > for (element, index) in somefun(sequence): > ...
for index, element in enumerate(sequence):
...
--
Robert Kern
"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco
--
http://mail.python.org/mailman/listinfo/python-list
