I am trying to make the program write these in a new file. It is easy to do each line by itself, but combined is making problems.
line1 = raw_input("line 1: ")
line2 = raw_input("line 2: ")
line3 = raw_input("line 3: ")
print "I'm going to write these to the file."
#this here results a syntax error..
target.write (\%r, \%r, \%r) % (line1, line2, line3)
#what do?
format, string concatenation, ...).