readline() reads the entire file at a time.
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).
readline()