Did they remove file.readline() and file.readlines() from python 3.2? If yes what did they replace it with?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

While there is no file type any more in Python 3.x, the various types in the io module that replace the old file type still support f.readline() and f.readlines(). You actually don't need those methods, though, since they can be substituted by next(f) and list(f).

link|improve this answer
feedback

Here is the documentation (well, tutorial) for Python 3.2. readline and readlines are still a part of Python.

link|improve this answer
feedback

No they did not.

f = open("file", "r")
f.readlines()

is working for me, Python 3.2.

EDIT: it produces an io object (not file).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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