How can you produce the following list with range() in Python?
range()
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
for i in range(8, 0, -1)
will solve this problem. It will output 8 to 1, and -1 means a reversed list