Python INHERITANCE in 6 minutes!

10 Views
Published
# 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")
Category
Bro Code
Tags
Python tutorial, python course, python programming
Be the first to comment