You can download this code by clicking the button below.
This code is now available for download.
This function sorts the input list and returns the sorted list.
Technology Stack : list, sorting (sorted)
Code Type : Function
Code Difficulty :
def a_sort_list(input_list):
return sorted(input_list)