Loading

Quipoin Menu

Learn • Practice • Grow

python / Context Managers
exercise
1/5
Exercise 1Python
Question

Create a context manager using a class that opens a file and prints Opening file" and "Closing file" around the operation. Use it with `with`.
"