To explain the embedding method of if statements in Python

Source: Internet
Author: User

This article introduces the embedding method of the If statement in Python, which is the basic knowledge of Python, and the friends who need it can refer to the following

There may be situations when you want to check for other conditions and a condition resolves to true. In this case, you can use the nested if structure.

In the nested IF statement structure, you can have another if ... elif structure inside an If ... elif. else structure.

Grammar:

The syntax for nesting if...elif...else structures can be:

?

1 2 3 4 5 6 7 8 9 10 11-12 If Expression1:statement (s) if Expression2:statement (s) elif expression3:statement (s) Else statement (s) elif 4:statement (s) else:statement (s)

Limit, please correct me. Reprint please be sure to indicate the source.

There may be situations when you want to check for other conditions and a condition resolves to true. In this case, you can use the nested if structure.

In the nested IF statement structure, you can have another if ... elif structure inside an If ... elif. else structure.

Grammar:

The syntax for nesting if...elif...else structures can be:

?

1 2 3 4 5 6 7 8 9 10 11-12 If Expression1:statement (s) if Expression2:statement (s) elif expression3:statement (s) Else statement (s) elif 4:statement (s) else:statement (s)

For example:

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16-17 #!/usr/bin/python var = m-If var < 200:print "Expression value is less than ' if var = 150:print" Which is 15 0 "elif var = 100:print" Which is M "elif var = 50:print" Which is "elif var < 50:print" Expression value is Less than "else:print" could not find true expression "print" Good bye! "

When the above code is executed, it produces the following results:

?

Expres Sion value is less than Which are good bye!

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.