Run
x = ['apple', 'banana', 'cherry'] for element in x[::-1]: print(element)
Output