Description
Model-View-Presenter. Derivation of MVC, mostly used for building user interfaces.
Where to use
- Desktop Apps. \n
- Legacy Android.
Real World Example
Windows Forms applications.
Code Example
class MVP:
def __init__(self):
pass
def execute(self):
print('Executing MVP')
