Lets you provide a substitute or placeholder for another object. A proxy controls access to the original object.
A website displays a low-res placeholder image while the high-res image downloads in the background.
class Proxy:\n def __init__(self):\n pass\n\n def execute(self):\n print('Executing Proxy')