New Dictionary
Peter is making a new dictionary. He wants to arrange the words in the ascending order of their length and later arrange the ones with the same length in lexicographic order. Each word is given a serial number according to its position. Find the word according to the serial number.
The serial number of words in Peter's dictionary is as follows
Word
Serial Number
A
B
1.
C
24
25
26
27
AA
AB
28
BA
def sortLexo(word):
# Split the my_string
words = word.split()
words.sort()
# in alphabetical manner.
for i in words:
print(i)
if __name__ == '__main__':
word = "A B C 24 25 26 27 AA AB 28 BA"
# function
sortLexo(word)
24
25
26
27
28
A
AA
AB
B
BA
C
Comments
Leave a comment