The common mathematical notation for a composite function looks as follows:
The idea is that we can define a new function, , that combines two other functions, and .
Python's multiple-line definition of a composition function can be done through the following code:
@f_deco def g(x): something
The resulting function can be essentially ...