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