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.
5.2m questions
6.8m answers