Loop Backwards

Dave davidworley at gmail.com
Mon Feb 13 21:24:37 EST 2006


This should be simple, but I can't get it:

How do you loop backwards through a list?

For example, in, say, Javascript:

for (var i  = list.length - 1; i >=0; i--) {
    do_stuff()
}

I mean, I could reverse the list, but I don't want to. I want it to
stay exactly the same, but I want to start at the end and end at the
beginning.

Thanks!

- Dave




More information about the Python-list mailing list