my_list = [1, 2, 3, 4, 5, 6] # Reverse a list by using reverse() method -- inplace reversal my_list.reverse() print(my_list)