You can download this code by clicking the button below.
This code is now available for download.
Sort the letters in the input string in alphabetical order and return the sorted string.
Technology Stack : String methods
Code Type : String processing
Code Difficulty :
def aordnslc(s):
"""
Sort the letters in a string in alphabetical order and return the sorted string.
"""
return ''.join(sorted(s))