In Python, after
fh = open('file.txt')
one may do the following to iterate over lines:
for l in fh:
pass
Then why do we have fh.readlines()?
|
In Python, after
one may do the following to iterate over lines:
Then why do we have |
|||
|
|
I would imagine that it's from before files were iteratators and is maintained for backwards compatibility. Even for a one-liner, it's 1 See gnibbler's answer. |
|||||||||
|
|
Mostly it is there for backward compatibility. readlines was there way before file objects were iterable Using readlines with the size argument is also one of the fastest ways to read from files because it reads a bunch of data in one hit, but doesn't need to allocate memory for the entire file all at once |
|||
|
|
|
the magic behind this is iterators, if you check so when you try to use
|
|||
|
|
|
|
|||||||||||||||
|