how to iterate through a list in reverse python code example
Example 1: loop through list backwards python
for item in my_list[::-1]:
print item
Example 2: iterate backwards through a list python
a = ["foo","bar","baz"]
for i in range(len(a)-1,-1,-1):
print(a[i])