Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

5 Answers

up vote 33 down vote accepted

Try range(100,-1,-1), the 3rd argument being the increment to use.

share|improve this answer
1  
you could also use xrange instead of range if you don't need the number list, but this is the correct answer. – cyborg_ar May 15 '09 at 17:24
2  
Also I need to use this to delete items from the collection, so that's why just wanted the indices. – Joan Venge May 15 '09 at 17:33
whats the second argument? – deltanine Jul 13 '12 at 1:34

In my opinion, this is the most readable:

for i in reversed(xrange(101)):
    print i,
share|improve this answer
3  
This is better than the accepted answer since it doesn't actually allocate all the numbers in memory (in Python 3 the accepted answer wouldn't either), plus it's more obvious what is happening. – Blixt Mar 23 '12 at 13:52
1  
Python before 2.6 does allocate all numbers, because reversed has no way to tell the xrange to go backwards... (Since Python 2.6 it calls __reversed__().) – Robert Siemer Jun 21 '12 at 18:31
@Triptych thanks prefer this solution – superbDeveloper Oct 2 '12 at 8:51
for i in range(100, -1, -1)

and some slightly longer (and slower) solution:

for i in reversed(range(101))

for i in range(101)[::-1]
share|improve this answer

Generally in Python, you can use negative indices to start from the back:

numbers = [10, 20, 30, 40, 50]
for i in xrange(len(numbers)):
    print numbers[-i - 1]

Result:

50
40
30
20
10
share|improve this answer

Another solution:

z = 10
for x in range (z):
   y = z-x
   print y

Result:

10
9
8
7
6
5
4
3
2
1

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.