L=[3,1,5,2,4,6]
m=min(L)
L.remove(m)
print(L)
这里为什么不能用这个代替:
Lc=L.copy
Lc.sort()
L.remove(Lc[0])
??
橋本奈奈未
相关分类