The reverse Method in Python: Reordering List Elements

Rearranges list elements in reverse order. Modifies the original list in place and returns None.

reverse()

my_list = [1, 'two', 'a', 4]
my_list.reverse()  # my_list is now [4, 'a', 'two', 1]