Report Bug
Qus :

What will be the output of the following Python code?

points = [[1, 2], [3, 1.5], [0.5, 0.5]]
points.sort()
print(points)

Qus

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

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]]
D. [[0.5, 0.5], [3, 1.5], [1, 2]]


Solution
C. [[0.5, 0.5], [1, 2], [3, 1.5]]



Explanation
Execute in the shell to verify.



Report Bug