Sorting List Function

  • Share this:

Code introduction


This function takes a list as an argument and returns a sorted list.


Technology Stack : Sorting

Code Type : Sort function

Code Difficulty : Beginner


                
                    
def a_sort_list(arg1):
    return sorted(arg1)                
              
Tags: