How can I reverse a list in Python? You can use in-built method reversed() to reverse a list in Python as shown in the below example – Default l = [9,8,7,6,5,4,3,2,1] print(list(reversed(l))) ## Returns [1, 2, 3, 4, 5, 6, 7, 8, 9] 12345 l = [9,8,7,6,5,4,3,2,1] print(list(reversed(l))) ## Returns [1, 2, 3, 4, 5, 6, 7, 8, 9] Tags: FAQ, Python