Python INHERITANCE in 6 minutes! 👨‍👦‍👦
Bro Code Bro Code
1.95M subscribers
2,408 views
0

 Published On May 24, 2024

Inheritance = Inherit attributes and methods from another class
Helps with code reusability and extensibility
class Child(Parent)

class Animal:
def __init__(self, name):
self.name = name
self.is_alive = True

def eat(self):
print(f"{self.name} is eating")

def sleep(self):
print(f"{self.name} is asleep")

class Dog(Animal):
def speak(self):
print("WOOF!")

class Cat(Animal):
def speak(self):
print("MEOW!")

class Mouse(Animal):
def speak(self):
print("SQUEEK!")

dog = Dog("Scooby")
cat = Cat("Garfield")
mouse = Mouse("Mickey")

show more

Share/Embed