when i use the write mode:
d = open("test.txt","a")
d.write(letter)
it always appends the text at the end everytime i write someting into the file. My question is, how to write as new line like this:
a
b
c
Currently it writes:
abc
Using \n does not work unfortunally...
Thanks so much