Multi-level Inheritance In Python Is Easy!🐍

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ม.ค. 2025

ความคิดเห็น • 3

  • @YousefCompSci
    @YousefCompSci  3 หลายเดือนก่อน +2

    # multi-level inheritance = when a child class inherits from another child class
    class Car:
    working = True
    class Chevy(Car):
    def drive(self):
    print("This car is driving")
    class Corvette(Chevy):
    def race(self):
    print("This corvette is fast")
    corvette = Corvette()
    print(corvette.working)
    corvette.drive()
    corvette.race()

  • @Monsta1291
    @Monsta1291 3 หลายเดือนก่อน +1

  • @yousef.ls3
    @yousef.ls3 3 หลายเดือนก่อน +1

    🎉🎉🎉