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