Back
How can you produce the following list with range() in Python?
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
To print a list in reverse order with range() you can use the list (reversed()) function below is the piece of code that uses the reversed() function.
print(list(reversed(range(10))))
30.9k questions
32.9k answers
500 comments
665 users