Closed
Description
Feature or enhancement
Proposal:
functools.reduce
takes function
(generally a callable) and iterable
, with an optional initial
parameter:
https://docs.python.org/3/library/functools.html#functools.reduce
However, initial
cannot be passed as a keyword argument, which reduces ;) readability,
from functools import reduce
from operator import sub
>>> reduce(sub, [1, 1, 2, 3, 5, 8], 21)
1
>>> reduce(sub, [1, 1, 2, 3, 5, 8], initial=21)
TypeError: reduce() takes no keyword arguments
Allowing initial
as keyword argument will be more clear, and initial
could also be passed as a keyword argument while making partial
functions out of reduce
.
Has this already been discussed elsewhere?
I have already discussed this feature proposal on Discourse