Answer to Question #296186 in Python for Raju

Question #296186

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.


Input

The first line of input is a positive integer which is the serial number.


Output

The output should be a single line containing the word that represents the serial number.


Explanation

Given serial number is 42.

As the serial number is between 26 and 52, the first character of the word is A.The remaining counter of the serial number is 16 (42-26).

The second character of the word is the 16th alphabet, which is P.

So, the output should be AP.


Sample Input1

42

Sample Output1

AP


Sample input2

751

Sample output2

ABW


1
Expert's answer
2022-02-10T15:23:28-0500
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

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS