KnowledgeBoat Logo
|

Computer Science

readline() reads the entire file at a time.

Python Data Handling

3 Likes

Answer

False

Reason — The readline() function reads one line at a time from a file, starting from the current cursor position up to and including the end of the line character (\n).

Answered By

2 Likes


Related Questions