Method Overriding In Python is Easy!🐍

Поділитися
Вставка
  • Опубліковано 6 січ 2025

КОМЕНТАРІ • 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