I am trying to loop from 100 to 0. How do I do this in Python?
for i in range (100,0) doesn't work.
|
|
|
Try |
|||||||||||
|
|
In my opinion, this is the most readable:
|
|||||||||||
|
and some slightly longer (and slower) solution:
|
|||
|
|
|
Generally in Python, you can use negative indices to start from the back:
Result:
|
||||
|
|
|
Another solution:
Result:
Tip: If you are using this method to count back indices in a list, you will want to -1 from the 'y' value, as your list indices will begin at 0. |
|||
|
|