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))))
31k questions
32.8k answers
501 comments
693 users