Intro to Python Programming
Closure is a function that has access to variables from an outer function, even after the outer function has finished executing. It allows the inner function to 'remember' and continue to use the variables from the outer function's scope, even after the outer function has returned.
congrats on reading the definition of Closure. now let's actually learn it.