python - How are lambda functions implemented? -
I am a new novice for Python, which is coded for two years. And I just have to know Lambda.
I wonder how Lambda Functions works in memory. Generally, where are they kept in computer memories and how are they called?
Do they become like in-line tasks? Or they have an indicator, yet they will not be called again.
A simple description: a lambda is an expression which is called as function can go.
This is a rhythmic way to write "temporary functions", which can be used when needed, but there is no longer necessary.
Just like anything else in Python, if there is no reference to it - Python will eventually get rid of it (collect / recover garbage / etc), how and when it happens The implementation is
Comments
Post a Comment