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

How can you produce the following list with range() in Python?

[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
share|improve this question

migrated from unix.stackexchange.com Sep 2 '11 at 16:18

3 Answers

up vote 36 down vote accepted

use reversed() function:

reversed(range(10))

It's much more meaningful.

share|improve this answer
5  
Although it 'is' less efficient. And you can't do slicing operations on it. – Jakob Bowyer Sep 2 '11 at 16:34
2  
@Jakob. Good point. +1. We all learn from each other every day... :-) – Michał Šrajer Sep 2 '11 at 16:37
3  
This would also produce a list from 8 down to 0, rather than 9 to 0. – F.J Sep 2 '11 at 16:41
1  
This answer is very clear and easy to understand, but it needs to be range(10), not range(9). Also, if you want a fully-formed list (for slicing, etc.), you should do list(reversed(range(10))). – John Y Sep 2 '11 at 16:49
1  
@F.J. right - fixed that. – Michał Šrajer Sep 2 '11 at 16:49
>>> range(9,-1,-1)
    [9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
share|improve this answer
Can you please explain this as well, also can you please recommend me any website/pdf book for python – ramesh.mimit Sep 2 '11 at 16:21
4  
@ramesh If you run help(range) in a python shell it will tell you the arguments. They're the number to start on, the number to end on (exclusive), and the step to take, so it starts at 9 and subtracts 1 until it gets to -1 (at which point it stops without returning, which is why the range ends at 0) – Michael Mrozek Sep 2 '11 at 16:24
2  
@ramesh.mimit: Just go to the official Python site. There is full documentation there, including a great tutorial. – John Y Sep 2 '11 at 16:55
range(9,0,-1)
[9, 8, 7, 6, 5, 4, 3, 2, 1]
share|improve this answer
Your answer shows why reversed(range(10)) is less error-prone. No offence Asinox. Just an honest observation. – Michał Šrajer May 21 at 16:47

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.