Vidyalelo
Python · Q108

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 108

Q108

What will be the output of the following Python code? points = [[1, 2], [3, 1.5], [0.5, 0.5]] points.sort() print(points)

A.
[[1, 2], [3, 1.5], [0.5, 0.5]]
B.
[[3, 1.5], [1, 2], [0.5, 0.5]]
C.
[[0.5, 0.5], [1, 2], [3, 1.5]]
Answer
D.
[[0.5, 0.5], [3, 1.5], [1, 2]]

Answer: Option C

Solution

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