How does a file reader know where one line starts and another ends?

Every line in a text file has a hidden EOL (end of line) set of characters.

Python knows how many characters to expect in a line.

The last item in a line of data does not have a comma after it.

Every line starts with a BOL (beginning of line) character.

Respuesta :

tonb

Answer:

Every line in a text file has a hidden EOL (end of line) set of characters.

Explanation:

The EOL characters are CR+LF, a.k.a. carriage return (13) + line feed (10).

Some text files only use LF characters to denote a line ending.

ACCESS MORE
ACCESS MORE
ACCESS MORE
ACCESS MORE