第26603题
判断给定Python代码执行后的输出是否为[0, 5, 1, 6, 2, 3, 4]
lst = list(range(7))
sorted(lst, key = lambda x: x%5)
print(lst)
A

正确

B

错误

提交0次 正确率0.00%
答案解析