189k views
2 votes
The read method of a file object reads the contents of a file one line at a time.

a)True
b)False

1 Answer

1 vote

Final answer:

The read method of a file object reads the entire content of a file, not just one line at a time.

Step-by-step explanation:

False

The statement is incorrect. The read method of a file object in programming languages such as Python reads the entire content of a file, not just one line at a time.

For example, if you have a text file with the following content:

The quick brown fox
jumps over the lazy dog

Using the read method will return the entire content:

'The quick brown fox
jumps over the lazy dog'

User Balthazar
by
8.6k points