Loop backwards using indices in Python?

Try range(100,-1,-1), the 3rd argument being the increment to use (documented here).

(“range” options, start, stop, step are documented here)

Leave a Comment