Python lambda expression simple usage

Source: Internet
Author: User

In a conditional operation, for a simple if Else statement, you can use the ternary operation to denote that:

# Normal Conditional statement if 1 = = 1: name = '    Wupeiqi ' else: name = '    Alex '  # ternary operation name = ' Wupeiqi ' if 1 = = 1 Else ' Alex '

For simple functions, there is also a simple way to express the function in the presentation method, namely: lambda expression
Lambda is just an expression, and the function body is much simpler than def.
The body of a lambda is an expression, not a block of code. Only a finite amount of logic can be encapsulated in a lambda expression.
A lambda expression acts as a function sketch. Allows the definition of a function to be embedded within the code.

# ###################### normal function ####################### definition function (normal way) def func (Arg):    return arg + 1  # Execute function result = Func (123)  # ###################### Lambda ######################  # definition function (lambda expression) My_lambda = lambda Arg:arg + 1  # Execute function Res Ult = MY_LAMBDA (123)

The existence of Lambda means a concise representation of simple functions

Python lambda expression simple usage

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.