comma separated sequence

 avatar
unknown
plain_text
2 years ago
314 B
4
Indexable
Write a program that accepts a comma separated sequence of words as input and prints the words in a comma-separated sequence after sorting them alphabetically.
Suppose the following input is supplied to the program:


str = "without,hello,bag,world"


Then, the output should be:
 "bag,hello,without,world"
Editor is loading...