第15221题 判断题
判断该Python代码执行后的输出是否为[0, 5, 1, 6, 2, 3, 4]

给定以下Python代码:

lst = list(range(7))
sorted(lst, key = lambda x: x%5)
print(lst)
A

正确

B

错误

程序运行统计
暂无判题统计