how to run decreasing loop in python code example
Example 1: python for loop backwards
for i in range(len(item)-1, -1, -1):
print(item[i])
Example 2: decreasing for loop python
for i in range(5,0,-1):
print(i)
#Prints: 5,4,3,2,1
#Inclusive of 5, not inclusice of 0. "-1" denotes the decrease