We use cookies to enhance your browsing experience.
Create your own context manager using yield.
from contextlib import contextmanager @contextmanager def my_context(): print('Starting') yield print('Ending') with my_context(): print('Inside')
We use cookies to enhance your experience and serve personalized ads.