列表排序:sort是修改原列表,sorted提供原列表的一个有序副本 li=[2,1,4,5,0]li.sort() #默认从小到大print li结果:[0, 1, 2, 4, 5] li=[2,1,4,5,0]li.sort(reverse=True) #从大小到print li结果:[5, 4, 2, 1, 0] li=[2,1,4,5,0]new = sorted(li)print new,li结果:[0, 1, 2, 4, 5] [2, 1, 4, 5, 0] li=[2,1,4,5,…