Python 3 list sort All In One
Python sort function
List sort
list.sort( key=None, reverse=False)
sort() 函数用于对原列表
进行排序,如果指定参数,则使用指定的比较函数
进行比较。
key :主要是用来指定进行比较的元素,只有一个参数,具体的函数的参数就是取自于可迭代对象中,指定可迭代对象中的一个元素来进行排序。
reverse :排序规则,reverse = True 降序
, reverse = False 升序
(默认)。
https://www.runoob.com/python3/python3-att-list-sort.html
默认,按照
元组
的第一个
元素递增
排序
#!/usr/bin/python3
k = 2
w = 0
profits = [4,1,2,3]
capital = [3,0,5,1]
n = len(profits)
projects = [(capital[i], profits[i]) for i in range(n)]
# 默认,按照元组的第一个元素递增排序 ✅
projects.sort()
print("projects =", projects)
# projects = [(0, 1), (1, 3), (3, 4), (5, 2)]
https://www.runoob.com/try/runcode.php?filename=HelloWorld&type=python3
demos
https://leetcode.com/problems/ipo/description/?envType=daily-question&envId=2024-06-15