Table of Contents

Python - Reduce Function

About

The Functional Programming - Reduce - Reduction Operation (fold) implementation in Python.

Reduce operates on pairs of elements in a series. It applies a function that takes in two values and returns a single value. Using this function, reduce is able to, iteratively, “reduce” a series to a single value.