Fredrik Lundh wrote:

e.g. the python equivalent to the c++ loop

for (i = 10; i >= 0; --i)

use range with a negative step:

    for i in range(10-1, -1, -1):
        ...

or just reverse the range:

    for i in reversed(range(10)):
        ...

(and to include the 10 in the range, add one to the 10 above)

</F>

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to