Report Bug
Qus :

What will be the output of the following Python code?

a=["Apple","Ball","Cobra"]
a.sort(key=len)
print(a)

Qus

निम्नलिखित Python कोड का आउटपुट क्या होगा?

a=["Apple","Ball","Cobra"]
a.sort(key=len)
print(a)


A. [‘Apple’, ‘Ball’, ‘Cobra’]
B. [‘Ball’, ‘Apple’, ‘Cobra’]
C. [‘Cobra’, ‘Apple’, ‘Ball’]
D. Invalid syntax for sort()


Solution
B. [‘Ball’, ‘Apple’, ‘Cobra’]



Explanation
it sort the based on length of string 



Report Bug