Best way to have a for-loop index?

andrewfelch at gmail.com andrewfelch at gmail.com
Thu Mar 9 19:32:24 EST 2006


I write a lot of code that looks like this:

for myElement, elementIndex in zip( elementList,
range(len(elementList))):
    print "myElement ", myElement, " at index: ",elementIndex


My question is, is there a better, cleaner, or easier way to get at the
element in a list AND the index of a loop than this?

TIA,
Andrew




More information about the Python-list mailing list