I've read in "Dive into Python 3" that "The readlines() method now returns an iterator, so it is just as efficient as xreadlines() was in Python 2". See here: http://diveintopython3.org/porting-code-to-python-3-with-2to3.html . I'm not sure that it's true because they don't mention it here: http://docs.python.org/release/3.0.1/whatsnew/3.0.html . How can I check that?
|
feedback
|
|
Like this:
| |||
|
feedback
|
|
The readlines method doesn't return an iterator in Python 3, it returns a list
To check, just call it from an interactive session - it will return a list, rather than an iterator:
Dive into Python appears to be wrong in this case.
This gets you the iterator that you want, and helps to explain why | |||||
feedback
|