Files
adii1823 48cef734e0 ch08
2021-10-28 17:39:37 +05:30

8 lines
197 B
Python

# files/write_not_exists.py
with open('write_x.txt', 'x') as fw: # this succeeds
fw.write('Writing line 1')
with open('write_x.txt', 'x') as fw: # this fails
fw.write('Writing line 2')