Answer:
def split(word):
return [char for char in word]
word = input("Enter a word: ")
chars = split(word)
chars.sort()
sorted = ''.join(chars)
print(sorted)
Step-by-step explanation:
Here is a python solution.
9.0m questions
11.6m answers