python--ternary operation, lambda expression

Source: Internet
Author: User
One or three-dollar operation

Format: Object = value 1 if condition else value 2 assigns value 1 to object when condition is set, and vice versa assigns value 2 to object

>>> name = 1 if True else 2>>> name1>>> name = 1 if False else 2>>> name2

General formula: Code 1 if condition else code 2 when the condition is set to execute if the preceding code 1, is not established then the code is executed 2

Second, lambda expression

Format: function name = lambda parameter: Functional code

parameterless F2 = Lambda:123print (F2 ()) Result: 123# parameter F2 = lambda a1,a2:a1+a2print (f2) Results: 3

  

python--ternary operation, lambda expression

Related Article

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.