Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 19 Online
OpenStudy (anonymous):

How can i print out a file on three seperate lines. I currently have it as: target.write(line1\n + line2\n + line3\n) this is working. Ive tried different variations with no success. Ive looked at docs.python and didnt understand much. I would like the answer but also a place to reference this question.

OpenStudy (anonymous):

you can try: target.write("%s \n %s \n %s \n" % (line1,line2,line3)) if you have the string class imported: import string target.write("{0} \n {1} \n {2}\n".format(line1,line2,line3))

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!