


This article brings you an introduction to the usage of the lambda function in Python (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Anonymous function lambda: refers to a type of function or subroutine that does not need to define an identifier (function name).
The lambda function can receive any number of parameters (including optional parameters) and return the value of a single expression.
Syntax:
lambda [arg1 [,arg2,.....argn]]:expression
Before the colon are parameters, there can be multiple, separated by commas, and the one on the right side of the colon is an expression (can only be one). In fact, the return value of lambda is the address of a function, which is the function object.
Example:
1. Assign the lambda function to a variable, and call the lambda function indirectly through this variable.
def sum(x,y): return x+y print(sum(1,2))
Use lambda function:
sum = lambda x,y : x+y print(sum(1,2))
2. Pass the lambda function as a parameter to other functions. Some Python built-in functions accept functions as parameters.
def odd(x): return x%2 temp = range(10) show = filter(odd,temp) print(list(show)) #[1, 3, 5, 7, 9]
Use lambda function:
print(list(filter(lambda x: x%2,range(10)))) #[1, 3, 5, 7, 9]
At this time, the lambda function is used to specify the conditions for filtering list elements.
Another example:
map(lambda x: x+1, [1, 2,3]) #[2, 3, 4]
At this time, the lambda function is used to specify a common operation for each element in the list.
In addition: sorted(), map()
3. Return the lambda function to the caller as the return value of other functions.
The return value of a function can also be a function. For example
return lambda x, y: x y
Return an addition function. At this time, the lambda function is actually a function defined inside a certain function, called a nested function, or internal function. Correspondingly, functions containing nested functions are called external functions. Inner functions can access local variables of outer functions. This feature is the basis of closure programming.
4. Assign the lambda function to other functions, thereby replacing other functions with the lambda function.
For example, in order to mask (Mock) the function sleep in the standard library time, we can call:
time.sleep=lambda x:None
during program initialization. In this way, calling the sleep function of the time library in subsequent code will not perform the original function. For example, when executingtime.sleep(3)
, the program will not sleep for 3 seconds, but will do nothing
5. Reduce the if...else statement It is a single conditional expression. The syntax of
is: expression1 if A else expression2
If A is True, the result of the conditional expression is expression1, otherwise it is expression2
def s(x): if x==1: return "yes" else: return "no" print(s(0)) print(s(1))
Using lambda function:
s=lambda x:"yes" if x==1 else "no" print(s(0)) print(s(1))
[Related recommendations: python video tutorial]
The above is the detailed content of Introduction to the usage of lambda function in python (with examples). For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
