, Pythonic - , , , . , , .
,
In [1]: open('/usr/tmp.txt', 'w').write('hello')
---------------------------------------------------------------------------
IOError Traceback (most recent call last)
<ipython-input-1-cc55d7c8e6f9> in <module>()
----> 1 open('/usr/tmp.txt', 'w').write('hello')
IOError: [Errno 13] Permission denied: '/usr/tmp.txt'
op, IOError. , .
try:
open('/usr/tmp.txt', 'w').write('hello')
except IOError:
...
. . , , . , .