Task List: Python Challenging Questions For Entry Level Job
Task List: Python Challenging Questions For Entry Level Job
LEVEL JOB
Task List
❖ Write a function that accepts a list of strings from stdin, and sorts it based on length of
those strings. The output is the sorted list of strings.
❖ Assuming the following cipher: 1=A, 2=B, 3=C,...,26=Z,27=AA, 28=AB, … write a python
function which takes two integers m and n (1 < m < n < 676) and prints the character
equivalents of each in a new line. For eg. if the input was m=25 and n=29, it will output:
➢ Y
➢ Z
➢ AA
➢ AB
➢ AC
❖ Write a factorisation function which accepts an integer (less than 100000) and prints all its
factors greater than 1. It should also print whether a number is prime; if so.