2022-05-05 18:25:55 +02:00

5 lines
91 B
Python

with open('reload.txt', 'a+') as fh:
fh.write('x')
fh.seek(0)
print(fh.read())