Abstraction in Python
Abstraction is the creation of a base or parent class with a set of generic functions that all child classes will need. Our polymorphism lesson actually uses abstraction by defining a method that can print text based on which class is calling it. You will always need to define the method or function in every class … Read more