Python Process Control statements

Source: Internet
Author: User
Note: In Python, non-0 values indicate that True;none and 0 represent False.


If statement

If...else statements

If...elif...else statements

Nested IF statements

You can add an if ... else statement to another if ... else statement, which is called nested. elif. elif.


For loop

While < judging conditions:

< cycle body >


For ... else

The For loop can also have an optional else block, and if the loop executes normally (that is, it is interrupted by a break jump), the else part is executed.


Note: The break statement can be used to jump out of a for loop, in which case the else part is ignored.



While loop

While < judging conditions:

< cycle body >

While ... else

As with the For loop, you can also have an optional else block in the while loop.


If the judgment condition in the while loop is False, the else part is executed.


Note: While loops can be terminated with the break statement, in which case the else part is ignored.


Python Process Control statements

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.