Descending Order Sort Function

  • Share this:

Code introduction


This function takes a list as input and returns a list sorted in descending order.


Technology Stack : Sorting

Code Type : Sort function

Code Difficulty : Intermediate


                
                    
def aord_descending(input_list):
    return sorted(input_list, reverse=True)                
              
Tags: