6 lines
96 B
Python

import pathlib
import os
f = open("/app/file.txt", "a")
f.write("We wrote some text")
f.close()