Pandas: Sort a dataframe based on multiple columns
问题 I know that this question has been asked several times. But none of the answers match my case. I've a pandas dataframe with columns,department and employee_count. I need to sort the employee_count column in descending order. But if there is a tie between 2 employee_counts then they should be sorted alphabetically based on department. Department Employee_Count 0 abc 10 1 adc 10 2 bca 11 3 cde 9 4 xyz 15 required output: Department Employee_Count 0 xyz 15 1 bca 11 2 abc 10 3 adc 10 4 cde 9 This