programming-examples/python/Function/Python program that accepts a hyphen-separated sequence of words as input and prints the words in a hyphen-separated sequence after sorting them alphabetically.py
2019-11-15 12:59:38 +01:00

3 lines
80 B
Python

items=[n for n in input().split('-')]
items.sort()
print('-'.join(items))