Universal newline mode is a feature of the Python open() function that allows
it to handle newline characters in a consistent way, regardless of the platform
on which the code is running.
In most programming languages, a newline character is represented by a single
character, either \n or \r. However …