Python: Abstract Class

Abstract class works as a blueprint for other classes. We can not instantiate an abstract class, but extend it. Abstract class contains abstract methods, which do not definition of the method. We need to add the definition of those abstract methods, in the child(class that extends abstract class) class. WARNING Abstract classes and methods are … Read more