Given a set where each element is a string, how can I reduce the set into an integer that is the sum of the length of these strings?
setA = ("hi", "hello", "bye")
reduce(lambda .... for word in setA)
Calling reduce with some lambda function should return 10 (2 + 5 + 3).
I can do it with a couple lambdas, I think, but there must be a cleaner way.
reduceis the right solution. That's why it was moved tofunctoolsinstead of scrapped. But yeah, it definitely shouldn't be the first tool you reach for; there's usually a simpler and better way to do it. – abarnert Feb 13 at 21:42setAis atuple, not aset. Is that intentional? If not, use{}braces instead of()parens. – abarnert Feb 13 at 21:43maporfiltercall, etc. Does that mean they're never useful? Again,reducewas removed frombuiltinsbecause it was an "attractive nuisance" that caused people to overuse it, but it was left in the stdlib because it is actually useful. – abarnert Feb 13 at 21:53