
Factory Pattern in Python 3 - The Simple Version
If you came from another programming language background, you probably already know what “factory method design pattern” means in software development. To put it in a simple manner, Factory Method Pattern is a design pattern which you let a function / method to handle the creation of an object.
I’m sure you have probably come across other tutorials on h...