I\'ve started to learn Python with LPTHW and I\'ve gotten to exercise 16:
http://learnpythonthehardway.org/book/ex16.html
And feel like an idiot because I ca
This info was really helpful. I got the right results by doing the following:
target.write(line1 + "\n" + line2 + "\n" + line3 + "\n")
The idea of concatenating would never have occurred to me.