>>> s = ['apple', 'orange', 'banana']
>>> s.sort(key=len)
>>> s
Options:
Explanation
Correct answer is : A
s.sort(key=len) - Here "s" will sort as per the key "len".. as "apple" has length 5 . It will ramain in the first postion and others remain unchanged .
Comment here: