Ask Your Question
0

Does the Python 3 file.readline method read until the end of the file (EOF)?

asked 2021-09-21 11:00:00 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2021-07-29 11:00:00 +0000

qstack gravatar image

No, the Python 3 file.readline method reads only until it reaches the next newline character (\n) or until the end of the line. To read until the end of the file, you can use a while loop or the file.readlines() method to read all the lines in the file at once.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-09-21 11:00:00 +0000

Seen: 7 times

Last updated: Jul 29 '21