Counting nested loop iterations

Derek Basch dbasch at yahoo.com
Thu Mar 16 15:12:56 EST 2006


What is the best way to count nested loop iterations? I can only figure
to use an index but that seems kludgy.

index = 0
for animal in zoo:
    for color in animal:
        index += 1

Thanks,
Derek Basch




More information about the Python-list mailing list