Answer the question
In order to leave comments, you need to log in
How to sort efficiently by the second argument?
Purpose: write a program that will sort people by scores for 3 subjects
Input: first line - surname, second line - scores for 3 subjects separated by a space
Source code
data = []
def insert_data():
str = input().split(" ")
name = str[0]
balli = int(str[1]) + int(str[2]) + int(str[3])
data.append([name, balli])
for i in range(int(input())):
insert_data()
data.sort(reverse=True, key=lambda item: item[1])
for item in data:
print(*item)
Answer the question
In order to leave comments, you need to log in
To sort by several columns at once, you can use the corresponding element sets in the tuple/list, i.e. change:
data.sort(key=lambda item: (-item[1], item[0]) )
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question