在线名词解释大全
专业、全面、易懂的全领域名词百科
首页
>
Python程序设计
>
详细
17 Whatwillbedisplayedbythefollowingcode?()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]]
正确答案:C