Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the python keyword "with" used for?

Example from: http://docs.python.org/tutorial/inputoutput.html

>>> with open('/tmp/workfile', 'r') as f:
...     read_data = f.read()
>>> f.closed
True
share|improve this question
12  
When you read the Python language page, what did you learn? docs.python.org/reference/… – S.Lott Sep 2 '09 at 18:59
6  
this might help: effbot.org/zone/python-with-statement.htm – Domenic Sep 2 '09 at 19:04

2 Answers

up vote 43 down vote accepted

In python (and VB.Net) the with keyword is used when working with unmanaged resources (like file streams). It creates the resource, performs the code in the block, then it closes the resource. It's similar to the Finally statement in a Try/Catch/Finally block, but without the error handling.

From Python Docs:

The ‘with‘ statement clarifies code that previously would use try...finally blocks to ensure that clean-up code is executed. In this section, I’ll discuss the statement as it will commonly be used. In the next section, I’ll examine the implementation details and show how to write objects for use with this statement.

The ‘with‘ statement is a control-flow structure whose basic structure is:

with expression [as variable]: with-block

The expression is evaluated, and it should result in an object that supports the context management protocol (that is, has __enter__() and __exit__() methods).

share|improve this answer
2  
What methods are used to close the open resource? What if I made my own file system object that had its own special open/close methods, would the "with" keyword work with those? Or will "with" only work with the built-in Python resource types? – MikeN Sep 3 '09 at 12:43
4  
In Python it looks like the custom object would have to implement (or inherit from something which implements) the __enter__ and __exit__ methods. With IronPython (python on .Net) you can implement from IDisposable and that will cover it. Not sure what is the best way in pure Python or other frameworks. – Rob Allen Sep 3 '09 at 14:10

It’s handy when you have two related operations which you’d like to execute as a pair, with a block of code in between. The classic example is opening a file, manipulating the file, then closing it:

 with open('output.txt', 'w') as f:
     f.write('Hi there!')

The above with statement will automatically close the file after the nested block of code. (Continue reading to see exactly how the close occurs.) The advantage of using a with statement is that it is guaranteed to close the file no matter how the nested block exits. If an exception occurs before the end of the block, it will close the file before the exception is caught by an outer exception handler. If the nested block were to contain a return statement, or a continue or break statement, the with statement would automatically close the file in those cases, too.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.