Home  >  Article  >  Backend Development  >  Why Do Lambdas Within Loops in Python Share State?

Why Do Lambdas Within Loops in Python Share State?

Patricia Arquette
Patricia ArquetteOriginal
2024-11-18 05:53:02208browse

Why Do Lambdas Within Loops in Python Share State?

Lambdas within Loops: Addressing Shared State

In Python, lambdas created within a loop can exhibit unexpected behavior due to shared state. As an example, consider the following code that aims to create lambdas that access an object's property:

lambdas_list = []
for obj in obj_list:
   lambdas_list.append(lambda : obj.some_var)

However, upon iterating through and calling these lambdas, the last object's property value is always obtained:

for f in lambdas_list:
    print(f())

To address this limitation, a simple modification can be made:

lambdas_list.append(lambda obj=obj: obj.some_var)

By providing a default argument to the lambda, the current value of the object is captured at the time of creation. This ensures that each lambda retains its own state, and the desired results are obtained:

for f in lambdas_list:
    print(f())

The above is the detailed content of Why Do Lambdas Within Loops in Python Share State?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn