Combine Group and Sort
General Info
Useful Snippets

11.0.5 Sort Ascending and descending

Example:

# use .sort_values   and add your list of columns to sort
# use ascending (True or False)

# lowest to highest (ascending=True)
DF.sort_values(['A'], ascending=True)

# highest to lowest (ascending=Fasle)
DF.sort_values(['A'], ascending=False)