Review Note

Last Update: 07/10/2024 01:20 PM

Current Deck: Python fundamentals

Published

Fields:

Code
def foo():
    lst = []
    for i in range(4):
        lst.append(lambda: i)
    print([f() for f in lst])

foo()

Output
3333
Explanation
Names in a lambda are evaluated when the function is called, not when it's defined.
Context
Python

Tags:

python_fundamentals

Suggested Changes:

Deck Changes (Suggestion to move the Note to the following Deck):

Field Changes:

Tag Changes: