Why python does not have a writeln() method?
Posted
by systempuntoout
on Stack Overflow
See other posts from Stack Overflow
or by systempuntoout
Published on 2010-04-04T19:33:58Z
Indexed on
2010/04/04
19:43 UTC
Read the original article
Hit count: 161
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 not has a writeln() method?
© Stack Overflow or respective owner