原地排序,直接改變輸入的列表,而無返回值。
x = [2, 1, 3]
x.sort()
print x
# output: [1, 2, 3]
print x.sort()
# output: none
若要實現賦值,則先把x的副本(乙個新物件)賦值給乙個變數,再排序,這樣可以保證不改變x。
x = [2, 1, 3]
y = x[:] # 或 y = list(x)
y.sort()
print x
# output: [2, 1, 3]
print y
# output: [1, 2, 3]
若直接賦值,不新建物件,實際上傳遞的是x的位址,x和y最後會指向同一物件,導致x和y都改變。
x = [2, 1, 3]
y = x
y.sort()
print x
# output: [1, 2, 3]
print y
# output: [1, 2, 3]
sort函式的關鍵字引數print cmp(1, 2)
# output: -1
print cmp(1, 1)
# output: 0
print cmp(2, 1)
# output: 1
x = [2, 1, 3]
x.sort(cmp)
print x
# output: [1, 2, 3]
x = ['aaa', 'a', 'aa']
x.sort(key=len)
print x
# output: ['a', 'aa', 'aaa']
x = [2, 1, 3]
x.sort(reverse=true)
print x
# output: [3, 2, 1]
sorted函式能實現上述不改變待排列表,並返回排序副本的需求。
x = [2, 1, 3]
y = sorted(x)
print x
# output: [2, 1, 3]
print y
# output: [1, 2, 3]
python 列表排序 python列表排序有哪些
python列表排序 1 氣泡排序,是一種簡單的排序演算法,它重複地遍歷要排序的數列,一次比較兩個元素,如果他們的順序錯誤就把他們交換過來 2 插入排序,通過構建有序序列,對於未排序資料,在已排序序列中從後向前掃瞄,找到相應位置並插入。1 氣泡排序 氣泡排序 bubble sort 是一種簡單的排序...
Python 列表排序,sort函式,分組排序
在python中對列表的排序有乙個內建的方法 sort list1 9,8,7,6,5 list1.sort print list1 5,6,7,8,9 注意 sort 是乙個內建的list.sort 方法,可以直接改變列表的內容.公升序降序 sort 是可以接受乙個reverse引數,這個引數是乙...
python 列表排序
列表排序 s 1,2,3 s.reverse 倒序 s.sort 正序 sorted sorted iterable,cmp none,key none,reverse false new sorted list iterable 是可迭代型別 cmp 用於比較的函式,比較什麼由key決定,有預設值...