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