5 lines
91 B
Python
5 lines
91 B
Python
with open('reload.txt', 'a+') as fh:
|
|
fh.write('x')
|
|
fh.seek(0)
|
|
print(fh.read())
|