Vidyalelo
Python · Q44

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 44

Q44

What will be the output of the following Python code? a=["Apple","Ball","Cobra"] a.sort(key=len) print(a)

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

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board