sorted函数 python sorted函数可以对一个纯数值列表排序吗?是的。例如,如果执行code:sorted([5,2,3,1,4]),您将输出这样的结果:[1,2,3,4,5]。在Pyth... 2021-03-12 1128次浏览