I have a doubt regarding the concept of closure in an object-oriented programming language. so by definition, closure is a concept of an inner function having access to free variables(variables which are created in the outer function).
I want to know, why an inner function has this property? what is the logic behind this functionality of an object-oriented programming language?
P.S. I am learning OOPs in Python... If anybody has any idea please help :) Thank you
This allows you to write functions which behave as "function-factories". So you call the outer function with some argument, which returns the inner function (note, crucially, it doesn't call the inner function).
e.g.
This returns a function which will then accept arguments, and multiply them by the 'n' you passed to the outer function:
E.g.
=> returns 12
All this is possible because functions in python are first-class objects: you can pass them around, assign them to variables, and in this case, return them from a function.