L=[3,1,5,2,4,6]m=min(L)L.remove(m)print(L)这里为什么不能用这个代替:L=[3,1,5,2,4,6]Lc=L.copyLc.sort()L.remove(Lc[0])print(L)?? 查看完整描述