with — Intermediate Playground
Wraps a block with a context manager for automatic setup/teardown
Python Playground
Output
Click "Run" to execute your codeMultiple context managers can be combined in one with statement. @contextmanager makes writing context managers easy using yield.
Challenge
Try modifying the code above to explore different behaviors. Can you extend the example to handle a new use case?