I want to get the result of a chain of computations from an initial value. I\'m actually using the following code:
def function_composition(function_list, origin
Fold while calling.
destination = reduce((lambda x, y: y(x)), function_list, origin)