In math, for a given f(x), then we can assign a value y = f(3). This we can also do in Python.
However, in math we also regularly do something like defining a new function like z(x) = f(x). Is this possible in Python ?
In other words, given a defined function, can assign that function to another one?
z = f?