diff --git a/src/data/roadmaps/python/content/context-manager@KAXF2kUAOvtBZhY8G9rkI.md b/src/data/roadmaps/python/content/context-manager@KAXF2kUAOvtBZhY8G9rkI.md index c07c15687..9a94e375e 100644 --- a/src/data/roadmaps/python/content/context-manager@KAXF2kUAOvtBZhY8G9rkI.md +++ b/src/data/roadmaps/python/content/context-manager@KAXF2kUAOvtBZhY8G9rkI.md @@ -1 +1,8 @@ -# Context Manager \ No newline at end of file +# Context Manager + +Context managers are a contruct in Python that allows you to set up context for a block of code, and then automatically clean up or relase resources when the block is exited. It is most commonly used with the `with` statement. + +Visit the following resources to learn more: + +- [@article@Context managers in Python](https://www.freecodecamp.org/news/context-managers-in-python/) +- [@article@Context managers](https://book.pythontips.com/en/latest/context_managers.html)