Sorting in place

The order is reversed by:

In [12]: a = ['c', 'b', 'a']

In [13]: a.sort()

In [14]: a
Out[14]: ['a', 'b', 'c']

In [15]: a.reverse()

In [16]: a
Out[16]: ['c', 'b', 'a']