Python note 13 (anonymous function)

Source: Internet
Author: User

First, anonymous function

In some cases, we need to pass the function as a parameter into another function, or the function as the return value of a function, at which point we can use the anonymous function.

The flag for an anonymous function is lambda.

>>> f = lambda x:x*x>>> f<function <lambda> at 0x000002ab91ca7f28>>>> F (5) 25> >> f = lambda a,b:a*a +b*b>>> f<function <lambda> at 0x000002ab922629d8>>>> F (5)

As the preceding code, the preceding is the parameter that needs to pass in the anonymous function, and the anonymous parameter does not need a return value, the return value is the result of the expression.

Python note 13 (anonymous function)

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.