Question: What is Python's abc module and its purpose?
Answer: The abc (Abstract Base Classes) module provides a mechanism for defining abstract base classes. It helps establish an interface that must be implemented by derived classes, ensuring consistent method signatures and behaviour.