Why Do Lambdas Within Loops in Python Share State?

Patricia Arquette
Release: 2024-11-18 05:53:02
Original
208 people have browsed it

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)
Copy after login

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

for f in lambdas_list:
    print(f())
Copy after login
Copy after login

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

lambdas_list.append(lambda obj=obj: obj.some_var)
Copy after login

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())
Copy after login
Copy after login

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!

source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template