Abstract Factories In Python
Learn about the usage of the Abstract Factory pattern in Python.
We'll cover the following...
Conceptualizing Abstract Factory without a base class
The example in the previous lesson highlights an interesting consequence of the way Python’s duck typing works. Do we really need the abstract base class, CardGameFactory? It provides a framework used ...
Ask