Although it 'is' less efficient. And you can't do slicing operations on it. – Jakob BowyerSep 2 '11 at 16:34
2
@Jakob. Good point. +1. We all learn from each other every day... :-) – Michał ŠrajerSep 2 '11 at 16:37
3
This would also produce a list from 8 down to 0, rather than 9 to 0. – F.JSep 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 YSep 2 '11 at 16:49
1
@F.J. right - fixed that. – Michał ŠrajerSep 2 '11 at 16:49
Can you please explain this as well, also can you please recommend me any website/pdf book for python – ramesh.mimitSep 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 MrozekSep 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 YSep 2 '11 at 16:55