sort values columns dataframe python don't work code example
Example: sort one column ascending and another column descending in python alphabetically
df = df.sort_values(["b", "c"], ascending = (False, True))
df = df.sort_values(["b", "c"], ascending = (False, True))