## Explanation Using a context handler is shorter and avoids the error of forgetting to close a file handle. ## Example ```python # Bad f = open(...) ... # (do something with f) f.close() # Good with open(..) as f: ... # (do something with f) ```