Sorting List Function

  • Share this:

Code introduction


This function takes a list as an argument, then sorts it using the built-in sorted function and returns the sorted list.


Technology Stack : List (list), Sorting (sorted)

Code Type : Function

Code Difficulty :


                
                    
def aordify_list(input_list):
    """
    Sorts a list in ascending order and returns it.

    Parameters:
    input_list (list): The list to be sorted.

    Returns:
    list: The sorted list.
    """
    return sorted(input_list)