mirror of
https://github.com/Faridik/Carolyn.git
synced 2026-07-08 13:21:53 +00:00
6 lines
96 B
Python
6 lines
96 B
Python
import pathlib
|
|
import os
|
|
|
|
f = open("/app/file.txt", "a")
|
|
f.write("We wrote some text")
|
|
f.close() |