sort columns by two rows pandas code example
Example: how to sort dataframe multi columns with multi ascending values
df = df.sort_values(["b", "c"], ascending = (False, True))
df = df.sort_values(["b", "c"], ascending = (False, True))