python loop from n to 0 code example
Example 1: python for loop backwards
for i in range(len(item)-1, -1, -1):
print(item[i])
Example 2: how to print a number at the end of a for loop in python
for i in range(1,4):
if i == 3:
print(i)