> Articles > Factory Function In Python
A factory function in python is used to create function objects.
We can have a function works as a factory which creates and returns function. We can return different functions based on parameter of function. As we have a function inside another function so closure is created and inner function will have access to factory function parameter even after it returns. This provides great flexibility for creation of functions. Let's see the implementation of factory function in python.
We can also have if statement outside and can create the function object based on value of parameter of factory function.
factory-function-2.py