Method Overriding In Python is Easy!🐍

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ธ.ค. 2024

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

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

    class Car:
    def drive(self):
    print("This car is driving")
    class Camaro(Car):
    def drive(self):
    print("This Camaro is fast asf")
    class Mustang(Car):
    pass
    camaro = Camaro()
    mustang = Mustang()
    camaro.drive()
    mustang.drive()

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

    🎉🎉🎉

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