Is there a one-liner to read all the lines of a file in Python, rather than the standard:
f = open('x.txt')
cts = f.read()
f.close()
Seems like this is done so often that there's got to be a one-liner. Any ideas?
|
if you want a single string, or
if you want a list of lines. Both don't guarantee the file is immediately closed (in practice it will be immediately closed in current CPython, but closed "only when the garbage collector gets around to it" in Jython, IronPython, and probably some future version of CPython). A more solid approach (in 2.6+, or 2.5 with a
or
This variant DOES guarantee immediate closure of the file right after the reading. |
||||
|
|
In Python 3, you can save memory by iterating over the file object itself, for instance inside of a for loop:
The same efficiency and elegance carries over to generator expressions:
where (These are one-liners, but I split them up to increase readability.) |
||||
|
|