8 lines
197 B
Python
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')
|