reduce « Buildin Function « Python Tutorial






13.40.reduce
13.40.1."reduce(func, sequence)" returns a single value by calling the function func on the first two items of the sequence, then on the result and the next item, and so on
13.40.2.reduce and lambda