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

3 lines
80 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
items=[n for n in input().split('-')]
items.sort()
print('-'.join(items))