Python 2.6 introduced a next function.
Why was this necessary? One could always type obj.next() instead of next(obj).
Is the latter more pythonic?
|
|
PEP 3114 describes this change. An excerpt about the motivation:
Be sure to read this PEP for more interesting details. As for why you want to use the |
|||||||
|
You get the |
|||||||||||||
|
|
Apart from the obvious additional functionality, it also looks better when used together with generator expressions. Compare
to
The latter is a lot more consistent with the rest of Python's style, IMHO. |
|||||||
|