Python INHERITANCE in 6 minutes! 👨‍👦‍👦

Published: 24 May 2024
on channel: Bro Code
7,911
225

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")


Watch video Python INHERITANCE in 6 minutes! 👨‍👦‍👦 online without registration, duration hours minute second in high quality. This video was added by user Bro Code 24 May 2024, don't forget to share it with your friends and acquaintances, it has been viewed on our site 7,911 once and liked it 225 people.