for item in my_list[::-1]: print item
Here is what the above code is Doing:
1. my_list[::-1] is a list comprehension that reverses the list.
2. for item in my_list[::-1] is a for loop that iterates through the list in reverse.
3. print item is a statement that prints each item in the list.