In the line:
an object is created, but where does it go afterwards, and is the file "closed" like in:
Is there a problem in not closing files?
Code:
open("file","a").write("\n")
Code:
f = open('file', 'a') f.close()
Comment