Python 2.6 2.6+ or 2.5 with from __future__ import with_statement
1/3:
with open('filename') as f:
s = f.read()
2/4:
with open('filename', 'w') as f:
f.write('data')
|
2 | added 1 characters in body | ||
|
Python 2.6 2.6+ or 2.5 with 1/3:
2/4:
|
||||
|
1 |
|
||
|
Python 2.6 or 2.5 with 1/3:
2/4:
|
||||