If we need to write a new line to a file we have to code:
file_output.write(\'Fooo line \\n\')
Are there any reasons why Python does not ha
Probably no real reason, just that it's really easy to write a newline when you need it, so why clutter up the file interface with an extra method just to do that?