You can download this code by clicking the button below.
This code is now available for download.
Sorts the input string alphabetically and returns the sorted string.
Technology Stack : Built-in libraries
Code Type : String processing
Code Difficulty :
def sorted_string(input_string):
return ''.join(sorted(input_string))