python-Anonymous functions

Source: Internet
Author: User

A lambda function is a minimal function that quickly defines a single line, and can be used in any regular version where a function is needed:
def Fun (x,    y) return X*y
Lambda version:
Lambda x,y:x*yprint R (2,3)
Format: Lambda parameter list: return [expression] variable because lambda returns a function object (built as a function object), you need to define a variable to receive the benefits of an anonymous function:-Using a lambda to write some scripts can save you from defining functions  To streamline the code. -for some abstract functions that will not be reused anywhere else, sometimes a function name is a problem, and using lambda does not have to consider naming problems-using lambda at some point then the code is easier to understand with reduce's application reduce (fun,list) re Duce the number in the list is assigned to the fun calculation note that the fun must be a number-to-digit operation, list must be an integer number example: 1 to 100 of the cumulative
Reduce (lambda x,y:x + y,xrange (1,101)

python-Anonymous functions

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.