Source Code:
(back to article)
my_list = [1, 2, 3, 4, 5] for item in my_list[::-1]: print(item)
Result:
Report an issue