python 24.3.21 作业

"""1.   使用继承机制,为Car类创建两个子类:赛车(Racing_Car)类和公交车(Bus)类。
为Car类定义属性最高时速(Top_speed)属性和核载人数(Nuclear_Number)方法,
并分别通过子类对象调用父类中的成员。"""

class Car:
def __init__(self, speed, number):
self.Top_speed = speed
self.Nuclear_Number = number

def Nuclear(self):
print("最高时速是", self.Top_speed)

class Racing_Car(Car):
def s(self):
print("核载人数", self.Nuclear_Number)

class Bus(Car):
def g(self):
print("核载人数", self.Nuclear_Number)

c = Racing_Car(300, 2)
b = Bus(100, 100)
print("赛车的", end='')
c.Nuclear()
c.s()
print("公交的", end='')
b.Nuclear()
b.g()

 

温馨提示:本文最后更新于2024-03-22 08:26:17,某些文章具有时效性,若有错误或已失效,请在下方留言或联系站长
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
相关推荐
评论 共2条
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情