Run
x = [2, 4, 6, 8] result = reversed(x) for item in result: print(item)
Output