python revert list code example Example: how to reverse a list in python mylist [1, 2, 3, 4, 5] mylist[::-1] [5, 4, 3, 2, 1]