View Problem

Append to a file

DiskEdit
python
open('test.txt', 'at').write('Hello World!\n')
ExpandDiskEdit
clojure
(with-out-append-writer "output.txt" (println "This is appended to the file"))

Submit a new solution for python or clojure
There are 15 other solutions in additional languages (cpp, csharp, erlang, fantom ...)