The sort0 method is provided in the list object, which is used to sort the elements in the original list. After sorting, the order of the elements in the original list will change.
The syntax format is as follows:
listname.sort(key=None, reverse=False)
char.sort(key=str.lower)Note: The sort() function has general support for Chinese, and it is recommended to use other methods
The sorted() function does not change the original list and generates a new list after sorting min() function gets the specified value or the minimum value in the sequence
min(a,b,c,d)min(seq)
max(a,b,c,d)max(seq)
print(max(-1,-5,key = abs)) # 先执行abs()函数再执行max()函数 print(max(1.3,'5', key=int)) # 列表和元组 # 先比较各列表低索引值的数,如果相同,再继续比较下一个索引值的数 print(max([1,2],(1,3),key=lambda x:x[1])) array =[[1,2,3],[1,0,],[4,1,-3],[2,2,3]] print(min(array)) print(max(array)) array =[[5,2,3],[6,9,6],[5,1,8],[5,1,7]] print(min(array)) print(max(array)) 输出结果: -5 5 (1, 3) [1, 0] [4, 1, -3] [5, 1, 7] [6, 9, 6]
The above is the detailed content of How to use Python's sort(), min(), and max() functions to sort list elements?. For more information, please follow other related articles on the PHP Chinese website!