如何从对象列表中找到最小值?

Posted

技术标签:

【中文标题】如何从对象列表中找到最小值?【英文标题】:How to find the minimum from a list of objects? 【发布时间】:2021-06-23 22:16:41 【问题描述】:

我想写一个方法来找到得分最低的人并打印他的其他详细信息。

如果我写一个方法来找到最小值,我就无法打印他的其他详细信息。 有问题的是,它被告知在另一个名为 Team 的类中编写“getMinRuns”。

python3

class Player:
    def __init__(self,playerName,playerCountry,playerScore):
        self.playerName=playerName
        self.playerCountry=playerCountry
        self.playerAge=playerScore

class Team:
    def getMinRuns(p):
        pass

n=int(input())
p=[]

for i in range(n):
    name=input()
    country=input()
    score=int(input())
    p.append(Player(name,country,score))
Team.getMinRuns(p)

【问题讨论】:

【参考方案1】:

当您将对象列表传递给函数 getMinRuns 时,您可以遍历列表并读取每个对象的分数,这将帮助您稍后找到最低得分对象,您可以在末尾打印或写入该对象的详细信息函数。

def getMinRuns(p):
    min_score_index = 0
    for i in range(1, len(p)):
        if p[i].playerAge < p[min_score_index].playerAge:
            min_score_index = i

    print(p[min_score_index].playerName, p[min_score_index].playerCountry, 
    p[min_score_index].playerAge)

我希望这可以解决您的问题,如果您有任何问题,请随时提出问题。

【讨论】:

以上是关于如何从对象列表中找到最小值?的主要内容,如果未能解决你的问题,请参考以下文章

dart - 如何从Dart中的列表中找到最小值和最大值

如何找到 ArrayList 的最小值?

MySQL:我检索了按部门排序的最高工资列表。如何找到这些最高工资中的最小值?

查找列表中最小数字的索引值? [复制]

在python中找到二维矩阵(二维)中不同列表的最小值、最大值和平均值

如何从python列表中的最小值开始?