I have have read several entries regarding dropping several functional functions from future python, including map and reduce.
What is the official policy regarding functional extensions?
is lambda function going to stay?
|
I have have read several entries regarding dropping several functional functions from future python, including map and reduce. What is the official policy regarding functional extensions? |
||||
|
|
Well, Python 3.0 and 3.1 are already released, so you can check this out for yourself. The end result was that map and filter were kept as built-ins, and lambda was also kept. The only change was that reduce was moved to the functools module; you just need to do
to use it. Future 3.x releases can be expected to remain backwards-compatible with 3.0 and 3.1 in this respect. |
|||||||||
|
|
In Python 3.x, Python continues to have a rich set of functional-ish tools built in: list comprehensions, generator expressions, iterators and generators, and functions like Python's "Benevolent Dictator For Life" floated the idea of removing
Python's Python's plain-old-standard Example:
In short, Python has lost none of its functional power. There is some general feeling that list comprehensions and generator expressions are probably preferable to
The |
|||||||||||
|