You can download this code by clicking the button below.
This code is now available for download.
This function takes a dictionary as an argument and returns a sorted list of all its keys.
Technology Stack : Sorting
Code Type : Function
Code Difficulty :
def aord_keys(arg_dict):
sorted_keys = sorted(arg_dict.keys())
return sorted_keys