@BroCodez

Don't forget to SMASH that LIKE button and 
DROP a random COMMENT down below for the YT algorithm 
๐Ÿ™

also here's the code from the video...
class Animal:

    alive = True

    def eat(self):
        print("This animal is eating")

    def sleep(self):
        print("This animal is sleeping")

class Rabbit(Animal):

    def run(self):
        print("This rabbit is running")

class Fish(Animal):

    def swim(self):
        print("This fish is swimming")

class Hawk(Animal):

    def fly(self):
        print("This hawk is flying")


rabbit = Rabbit()
fish = Fish()
hawk = Hawk()

print(rabbit.alive)
fish.eat()
hawk.sleep()

rabbit.run()
fish.swim()
hawk.fly()

@incognito3923

i watched like 3 videos read 2 books about inheritance listened 1 lecture and learnt nothing. then you came up with 7 minute video and just put knowledge in my brain <3 <3

@cameron7957

You have no idea how well you just described this.  Thank you, much needed.

@ronbelanger8812

This is the best programming series I have ever seen.  You have a great gift for teaching.

@hazzazfaruque9882

Thank You for awesomeing tutorial

@DucTaZenSurfer

Whoa, how on earth can you make me understand inheritance in a 7-minute video but my class of 7 lecture videos couldn't?! lol Good-looking Bro, I always refer to you for learning and in a rut in school during my Python phase. Now we're moving into Phase 2 with Django and Full Dev Stack stuff!

@abobakerhassan2497

Best explanation ever

@SusanAmberBruce

Thanks, always good to listen to different people explain class inheritance and get the principals understood.

@promohican8222

Short and detailed video

@arvinvillalobos

Thanks for sharing your knowledge with us, I'm a beginner programmer.

@elizabethconley2860

Thank you!  I am studying to take my PCEP and I ran into "simple class hierarchy" in one of my practice tests.  This is the third explanation I've encountered, and the only one that I could understand at all.  You've given me hope.

@ahmadiwnl

He made a sub-class for a Rabbit, fish and a Hawk too.

@kamkam9600

Good vid

@happytyagi7122

Nice ๐Ÿ‘

@tara2337

what you do is not teaching, it's more like magic:face-blue-wide-eyes: you rock!

@snoopy962

Easily and clearly explained. Thanks :)

@kingshahzad78

Great Explanations Sir:hand-purple-blue-peace:

@thalesaragao8634

Extremely easy and useful tutorial. I am studying django and a lot of things are just making sense now! Great Content!