【Python】 面向对象:输出年龄最大的对象所对应的名字

问题:用相同的Dog类,实例化三只新狗,每只狗的年龄不同。然后编写一个名为get_biggest_number()的函数,它接受任意数量的年龄并返回最旧的函数。然后输出最老的狗的年龄.

class Dog:
    # Class Attributes
    species = 'mammal'
    
    # Initializer /Instance Attributes
    def __init__(self, name, age):
        self.name = name
        self.age = age

# Print the name of the oldest dog
def get_biggest_number(list):
    name = ""
    age = 0
    for i in range(len(list)):   # len(list[a, b, c]) calc the leth of the list
        if list[i].age > age:
            age = list[i].age
            name = list[i].name
    print("oldest dog is " + name)

dog_a = Dog("aaa", 5)        
dog_b = Dog("bbb", 6)
dog_c = Dog("ccc", 7)
dog_list = [dog_a, dog_b, dog_c]

# Use the function 
get_biggest_number(dog_list)

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值