Reverse List in Python To reverse the list in python use [::-1]. for e.g if list is a = [1,2,3], so to reverse it you can do a = a[::-1]. It will reverse the list and store back to the variable a.