python中sort()和sorted()的排序小东西_sort排序

python中sort()和sorted()的排序小东西_赋值_02

可以看到用列表采用赋值形式,a.append(5),不但是a变成了[4,3,2,1,5],b也跟着变了,当对a进行sort排序时,b也会跟着变

python中sort()和sorted()的排序小东西_sort排序_03

如果我们想b不跟着变怎么弄,我们采用sorted方法

python中sort()和sorted()的排序小东西_sort排序_04