Intro: Object Oriented Programming in python
This is a quick introduction to OOP and inheritance in python. A class is a container of attributes (can think of as variables) and methods (functions). Classes allow us to define a container that can consists of data and functions. …