0

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

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

蟒蛇3

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)
4

1 回答 1

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)

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

于 2021-03-27T05:38:38.677 回答