What is the best way of doing this in Python?
for (v = n / 2 - 1; v >= 0; v--)
I actually tried Google first, but as far as I can see the only solution would be to use while.
|
|
|
The way to do it is with
(Or, in Python 3.x, with |
|||
|
|
|
I would do this:
It's a bit clearer that this is a reverse sequence, what the lower limit is, and what the upper limit is. |
|||||||||||||||||||
|
However, in 90% of the cases when you would have used a
|
|||
|
|
Where v and n are Note: This is for Python 2.x . |
|||
|