List comprehension and lambdas in Python(Python 中的列表理解和 lambda)
问题描述
我想创建一个 lambda 列表,但结果并不如我所愿.
I wanted to create a list of lambdas, but it didn't quite work out as I hoped.
L = [(lambda x: x/y) for y in range(10)]
我希望列表中的每个函数都将其参数除以其索引,但所有函数仅除以最后一个索引.
I expected every function in the list to divide its argument by its index, but all functions only divide by the last index.
>>> L[1](5)
0.5555555555555556
>>> L[5](5)
0.5555555555555556
>>> 5/9
0.5555555555555556
这种列表推导式(每个 lambda 都有自己的 y
副本)在 Python 中是否可行?
Is this kind of list comprehension, where every lambda has its own copy of y
possible in Python?
推荐答案
你的 lambda 中的 y
指的是 y
在它来自的范围内的最后一个值,即 9.
The y
in your lambda refers to the last value that y
had in the scope it came from, i.e., 9.
获得所需行为的最简单方法是在 lambda 中使用默认参数:
The easiest way to get the behavior you want is to use a default argument in your lambda:
lambda x, y=y: x/y
这会在定义 lambda 函数时捕获 y
的值.
This captures the value of y
at the moment the lambda function is defined.
你也可以做一个double-lambda",调用一个返回你想要的lambda的函数,传入y
的期望值:
You can also do a "double-lambda", calling a function that returns the lambda you want, passing in the desired value of y
:
(lambda y: lambda x: x/y)(y)
这里,每次调用外部 lambda 时都会提供一个新范围.
Here, the outer lambda provides a new scope each time you call it.
这篇关于Python 中的列表理解和 lambda的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python 中的列表理解和 lambda


- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 沿轴计算直方图 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01