552

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

[9, 8, 7, 6, 5, 4, 3, 2, 1, 0] 
1
  • 4
    What about [*range(9, -1, -1)]? Super pythonic! Commented Jun 8, 2020 at 13:38

21 Answers 21

845

Use reversed() function (efficient since range implements __reversed__):

reversed(range(10)) 

It's much more meaningful.

Update: list cast

If you want it to be a list (as @btk pointed out):

list(reversed(range(10))) 

Update: range-only solution

If you want to use only range to achieve the same result, you can use all its parameters. range(start, stop, step)

For example, to generate a list [3, 2, 1, 0], you can use the following:

range(3, -1, -1) 

It may be less intuitive, but it works the same with less text. This answer by @Wolf indicates this approach is slightly faster than reversed.

Sign up to request clarification or add additional context in comments.

13 Comments

Although it 'is' less efficient. And you can't do slicing operations on it.
This would also produce a list from 8 down to 0, rather than 9 to 0.
Using "reversed" with python generator (assuming we ware talking of Python 3 range built-in) is just conceptually wrong and teaches wrong habits of not considering memory/processing complexity when programming in high level language.
In Python3, reversed does not accept generators in general but it accepts range. Why would reversed(range(10000)) need to allocate memory for the whole list? range can return an object that implements the __reversed__ method that allows efficient reverse iteration?
@thedk range is not a generator, and using reversed(range(...)) is a perfectly reasonable thing to do
|
373

Use the 'range' built-in function. The signature is range(start, stop, step). This produces a sequence that yields numbers, starting with start, and ending if stop has been reached, excluding stop.

>>> range(9,-1,-1) range(9, -1, -1) >>> list(range(9,-1,-1)) [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] >>> list(range(-2, 6, 2)) [-2, 0, 2, 4] 

The list constructor converts range (which is a python generator), into a list.

5 Comments

Can you please explain this as well, also can you please recommend me any website/pdf book for python
@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)
@ramesh.mimit: Just go to the official Python site. There is full documentation there, including a great tutorial.
Really, this is the proper answer, but it could be more clearly explained. range(start, stop, step) -- start at the number start, and yield results unless stop has been reached, moving by step each time.
Simple explanation: in order to go backwards, you need to set your step to be negative (add a minus sign) and your start to be bigger than the stop (start is your maximum, stop is your minimum).
63

You could use range(10)[::-1] which is the same thing as range(9, -1, -1) and arguably more readable (if you're familiar with the common sequence[::-1] Python idiom).

Comments

49

For those who are interested in the "efficiency" of the options collected so far...

Jaime RGP's answer led me to restart my computer after timing the somewhat "challenging" solution of Jason literally following my own suggestion (via comment). To spare the curious of you the downtime, I present here my results (worst-first):[1]

Jason's answer (maybe just an excursion into the power of list comprehension):

$ python -m timeit "[9-i for i in range(10)]" 1000000 loops, best of 3: 1.54 usec per loop 

martineau's answer (readable if you are familiar with the extended slices syntax):

$ python -m timeit "range(10)[::-1]" 1000000 loops, best of 3: 0.743 usec per loop 

Michał Šrajer's answer (the accepted one, very readable):

$ python -m timeit "reversed(range(10))" 1000000 loops, best of 3: 0.538 usec per loop 

bene's answer (the very first, but very sketchy at that time):

$ python -m timeit "range(9,-1,-1)" 1000000 loops, best of 3: 0.401 usec per loop 

The last option is easy to remember using the range(n-1,-1,-1) notation by Val Neekman.


[1] As commented by Karl Knechtel, the results presented here are version-dependent and refer to the Python 3.x version that was stable at the time of answering this question.

4 Comments

I did my own timings before reading this answer, and got the same results.
These timings are useful but you haven't spelt out the conclusion: The time difference is so insignificant that you should use whichever is most readable and not worry about it. In fact the difference between the most readable (reversed(...)) and fastest/least readable (range(9,-1,-1)) is about a ten millionth of a second. Your users are not going to notice that :-) but will notice the bugs that could result from less readable code.
Forgot to add: also they're pretty useless in this form because surely the bigger difference is going to be when you're iterating over millions of elements. 10 elements is too few to be particularly meaningful.
All of this will depend on the Python version, since in 3.x range does not create a list.
26

No sense to use reverse because the range function can return reversed list.

When you have iteration over n items and want to replace order of list returned by range(start, stop, step) you have to use third parameter of range which identifies step and set it to -1, other parameters shall be adjusted accordingly:

  1. Provide stop parameter as -1 (it's previous value of stop - 1, stop was equal to 0).
  2. As start parameter use n-1.

So equivalent of range(n) in reverse order would be:

n = 10 print range(n-1,-1,-1) #[9, 8, 7, 6, 5, 4, 3, 2, 1, 0] 

3 Comments

Frankly I find this less intuitive than reversed(range(n))
@NicholasHamilton Agree with you, however idea behind that answer is to use less resources... ( and the question was about using just range function :) )
Ok, no worries, I guess it depends on the situation. For instance, If the range function is used as the index for a loop, then it will have limited effect, however, if it is used inside an external loop, then the cost will compound...
17
for i in range(8, 0, -1) 

will solve this problem. It will output 8 to 1, and -1 means a reversed list

1 Comment

This will give 8, 7, ... 1 instead of 8, 7, ... 0. In way, this is a great answer, because it shows how bad the range(..., -1) techinique is.
11

Very often asked question is whether range(9, -1, -1) better than reversed(range(10)) in Python 3? People who have worked in other languages with iterators immediately tend to think that reversed() must cache all values and then return in reverse order. Thing is that Python's reversed() operator doesn't work if the object is just an iterator. The object must have one of below two for reversed() to work:

  1. Either support len() and integer indexes via []
  2. Or have __reversed__() method implemented.

If you try to use reversed() on object that has none of above then you will get:

>>> [reversed((x for x in range(10)))] TypeError: 'generator' object is not reversible 

So in short, Python's reversed() is only meant on array like objects and so it should have same performance as forward iteration.

But what about range()? Isn't that a generator? In Python 3 it is generator but wrapped in a class that implements both of above. So range(100000) doesn't take up lot of memory but it still supports efficient indexing and reversing.

So in summary, you can use reversed(range(10)) without any hit on performance.

Comments

10

Readibility aside, reversed(range(n)) seems to be faster than range(n)[::-1].

$ python -m timeit "reversed(range(1000000000))" 1000000 loops, best of 3: 0.598 usec per loop $ python -m timeit "range(1000000000)[::-1]" 1000000 loops, best of 3: 0.945 usec per loop 

Just if anyone was wondering :)

3 Comments

good to have some numbers :) -- why didn't you add range(1000000000-1,-1,-1) as well?
...better don't try timeit range(1000000000-1,-1,-1) on the command line, instead see my results :-)
@Wolf these timings are version-specific, since in 3.x range does not create a list. range(1000000000-1,-1,-1) will actually be faster than either option in the question.
7

The requirement in this question calls for a list of integers of size 10 in descending order. So, let's produce a list in python.

# This meets the requirement. # But it is a bit harder to wrap one's head around this. right? >>> range(10-1, -1, -1) [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] # let's find something that is a bit more self-explanatory. Sounds good? # ---------------------------------------------------- # This returns a list in ascending order. # Opposite of what the requirement called for. >>> range(10) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] # This returns an iterator in descending order. # Doesn't meet the requirement as it is not a list. >>> reversed(range(10)) <listreverseiterator object at 0x10e14e090> # This returns a list in descending order and meets the requirement >>> list(reversed(range(10))) [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] 

1 Comment

I really like the triple -1 It's exactly this pattern that makes it easy to keep wrap one's head around this -- Today I learned that if it really has to be efficient, use range(n-1, -1, -1) when traversing a range in reversed order.
6

You can do printing of reverse numbers with range() BIF Like ,

for number in range ( 10 , 0 , -1 ) : print ( number ) 

Output will be [10,9,8,7,6,5,4,3,2,1]

range() - range ( start , end , increment/decrement ) where start is inclusive , end is exclusive and increment can be any numbers and behaves like step

Comments

5

i believe this can help,

range(5)[::-1] 

below is Usage:

for i in range(5)[::-1]: print i 

Comments

3

Using without [::-1] or reversed -

def reverse(text): result = [] for index in range(len(text)-1,-1,-1): c = text[index] result.append(c) return ''.join(result) print reverse("python!") 

1 Comment

Why should someone write this instead of "python!"[::-1]?
3
range(9,-1,-1) [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] 

2 Comments

Your answer shows why reversed(range(10)) is less error-prone. No offence Asinox. Just an honest observation.
Note that this is similar to the answer by bene on 2 Sep 2011
2

I thought that many (as myself) could be more interested in a common case of traversing an existing list in reversed order instead, as it's stated in the title, rather than just generating indices for such traversal.

Even though, all the right answers are still perfectly fine for this case, I want to point out that the performance comparison done in Wolf's answer is for generating indices only. So I've made similar benchmark for traversing an existing list in reversed order.

TL;DR a[::-1] is the fastest.

NB: If you want more detailed analysis of different reversal alternatives and their performance, check out this great answer.

Prerequisites:

a = list(range(10)) 

Jason's answer:

%timeit [a[9-i] for i in range(10)] 1.27 µs ± 61.5 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) 

martineau's answer:

%timeit a[::-1] 135 ns ± 4.07 ns per loop (mean ± std. dev. of 7 runs, 10000000 loops each) 

Michał Šrajer's answer:

%timeit list(reversed(a)) 374 ns ± 9.87 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) 

bene's answer:

%timeit [a[i] for i in range(9, -1, -1)] 1.09 µs ± 11.1 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) 

As you see, in this case there's no need to explicitly generate indices, so the fastest method is the one that makes less extra actions.

NB: I tested in JupyterLab which has handy "magic command" %timeit. It uses standard timeit.timeit under the hood. Tested for Python 3.7.3

4 Comments

The case of a[:: - 1] turned out to be the fastest because you only counted the reversal time. If you write fairly: * Janson's answer: %timeit [9-i for i in range (10)] * martineau's answer: %timeit list(range(10)) [:: - 1] * Michał Šrajer's answer: %timeit list(reversed(range(10))) * bene's answer: %timeit list(range(9, -1, -1)) Each of these solutions will give you a list. And the fastest solution, as @Wolf showed, is bene's answer => range (9, -1, -1)
@Szczerski now, let's imagine that a = [3, 4, 100, 1, 20, -10, 0, 9, 5, 4] in prerequisites. It brakes your code, but not mine. My answer is for the case when the arbitrary list is already given
If you are looking for an answer to the question "Print a list in reverse order with range ()?" and you would like to know which way is the fastest. This solution is bene's answer. But if you are looking for the fastest way to reverse your list a = [3, 4, 100, 1, 20, -10, 0, 9, 5, 4] then use reverse() instead of [:: - 1]. a.reverse () is twice as fast.
I disagree or I'm just still missing your point. Again, the answers to original question are mostly bound to a = [0..9] scenario. Timings from the popular answer may be misleading for more general cases. I needed timings for myself, so I did and shared them here. I didn't want in-place reversal - I needed just a plain list with a copy of the origin list in reverse order. Of course, this test is greatly simplified, and results may/should vary for a bit different test alternatives.
1
[9-i for i in range(10)] [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] 

Comments

1

because range(n) produces an iterable there are all sorts of nice things you can do which will produce the result you desire, such as:

range(n)[::-1] 

if loops are ok, we can make sort of a queue:

a = [] for i in range(n): a.insert(0,a) return a 

or maybe use the reverse() method on it:

reverse(range(n)) 

1 Comment

Will reversed(range(n)) have to expand the whole range in memory?
0

You don't necessarily need to use the range function, you can simply do list[::-1] which should return the list in reversed order swiftly, without using any additions.

1 Comment

This appears to be the solution suggested in a previous answer. It also appears that you might be trying to comment on a different previous answer -- you'll need to get a bit more reputation before you can do that.
0

Suppose you have a list call it a={1,2,3,4,5} Now if you want to print the list in reverse then simply use the following code.

a.reverse for i in a: print(i) 

I know you asked using range but its already answered.

Comments

0

You could use a User-Defined Function like this one:

def range_reversed(start: int, stop: int, step: int) -> range: # Determine the number of elements in the sequence num_elem = len(range(start, stop, step)) # Calculate the start of the reverse sequence using the formula for an arithmetic sequence start_reversed = start + (num_elem - 1) * step # Determine the stop of the reverse sequence stop_reversed = start - 1 if step > 0 else start + 1 return range(start_reversed, stop_reversed, -step) 
# Example usage: print(list(range_reversed(0,13,4))) # Output: [12, 8, 4, 0] 

Comments

-1
range(9,-1,-1) [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] 

Is the correct form. If you use

reversed(range(10)) 

you wont get a 0 case. For instance, say your 10 isn't a magic number and a variable you're using to lookup start from reverse. If your n case is 0, reversed(range(0)) will not execute which is wrong if you by chance have a single object in the zero index.

1 Comment

This is incorrect, run list(reversed(range(10))) and you'll see it does include 0
-4

Get the reverse output of reversing the given input integer. example input is:5

The answer should be:

54321 1234 321 12 1 

Answer is:

def get_val(n):     d = ''.join(str(i) for i in range(n, 0, -1))     print(d)     print(d[::-1][:-1])     if n - 1>1:         return get_vale(n-1)           get_val(12)      

1 Comment

Your answer does not address the question at all. Please review how to answer.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.