Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
5  
Funny, I needed this again and I googled for it. Never thought my own question would come up :) – Mike Caron May 10 '11 at 15:23

2 Answers

up vote 50 down vote accepted
f = open('x.txt').read()

if you want a single string, or

f = open('x.txt').readlines()

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 from __future__ import with_statement) is

with open('x.txt') as x: f = x.read()

or

with open('x.txt') as x: f = x.readlines()

This variant DOES guarantee immediate closure of the file right after the reading.

share|improve this answer
That's what I would have guessed, but didn't know when the opened file would be closed. Thanks! – Mike Caron Oct 27 '09 at 16:11

In Python 3, you can save memory by iterating over the file object itself, for instance inside of a for loop:

with open('test.txt') as file:
    for line in file:
        do_something_with(line)

The same efficiency and elegance carries over to generator expressions:

with open('test.txt') as file:
    lines = (transform(line) for line in file if filter(line))

where transform is an optional method to parse your line and filter an optional predicate.

(These are one-liners, but I split them up to increase readability.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.