Is there a way of using the range() function with stride -1?
range()
E.g. using range(10, -10) instead of the square-bracketed values below?
range(10, -10)
If you prefer create list in range:
numbers = list(range(-10, 10))