定义使用lambda函数计算三个数的平均值。
时间: 2023-12-29 21:03:02 浏览: 151
A short introduction to the Lambda Calculus
5星 · 资源好评率100%
好的,可以这样定义一个使用lambda函数计算三个数的平均值的函数:
```python
average = lambda x, y, z: (x + y + z) / 3
```
这个函数使用了lambda表达式,接受三个参数,并返回它们的平均值。您可以像使用普通函数一样使用它,比如这样:
```python
result = average(10, 20, 30)
print("The average of the three numbers is:", result)
```
以上代码将会输出:`The average of the three numbers is: 20.0`
阅读全文