Erik Max Francis wrote:
> Robert Kern wrote:
> 
>>>I usually use:
>>>
>>>try:
>>>  f = open(file)
>>>  contents = f.read()
>>>finally:
>>>  f.close()
>>>
>>>But now I am wondering if that is the same thing. Which method would
>>>you rather use? Why?
>>
>>Just keep doing what you are doing, please.
> 
> Note quite.  The assignment of the resources to its variable needs to be 
> done before the try:
> 
>       f = open(file)
>       try:
>           contents = f.read()
>       finally:
>           f.close()

Yes, you are correct.

-- 
Robert Kern
[EMAIL PROTECTED]

"I have come to believe that the whole world is an enigma, a harmless enigma
 that is made terrible by our own mad attempt to interpret it as though it had
 an underlying truth."
  -- Umberto Eco

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to