Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm attempting to make a function that writes a string to the last line in a file. However, what I currently have (below) only writes to the first line. So if I call the function more than once, it simply overwrites the first line. I'd like it to instead write the string to a new line; how would I go about this?

Snippet :

def write (self, string) :
    # self.Dir is a txt file
    self.File = file(self.Dir, 'w')
    self.File.write(string)
share|improve this question

1 Answer

up vote 10 down vote accepted

Open the file in append mode ('a' instead of 'w'). Opening in 'w' mode truncates your file (you're now writing into an empty file)

share|improve this answer
2  
And remember to put in a newline character '\n' after the last string. – Nam Nguyen May 16 '11 at 11:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.