Skip to content Skip to sidebar Skip to footer
Showing posts with the label Abstract Class

Abstract Classes Without Abstract Methods Creating Objects In Python

Basically, I knew that abstract base classes are used as skeleton classes just like regular classes… Read more Abstract Classes Without Abstract Methods Creating Objects In Python

No Error While Instantiating Abstract Class, Even Though Abstract Method Is Not Implemented

I was trying out the below python code: from abc import ABCMeta, abstractmethod class Bar: __… Read more No Error While Instantiating Abstract Class, Even Though Abstract Method Is Not Implemented

Python's Super(), Abstract Base Classes, And Notimplementederror

Abstract base classes can still be handy in Python. In writing an abstract base class where I want … Read more Python's Super(), Abstract Base Classes, And Notimplementederror