I\'m just starting python so am most likely just doing something stupid. I\'m reading data off of a table and need to put them into columns in a txt file. I cannot convince my c
table.write(\nflux + " " + observed)
should be
table.write("\n" + flux + " " + observed)
or alternatively
table.write("\n{} {}".format(flux, observed))
More information about format() if you are curious.