This tag refers to the `readlines` method available on file objects in Python.
The method's schematics are below:
readlines([size:int]) -> list of strings, each a line from the file.
readlines calls the readline method repeatedly and returns a list of the lines so read. The size argument, if supplied, sets an approximate bound on the
total number of bytes in the lines returned.