Examples of the use of continue statements in Python

Source: Internet
Author: User
Tags in python

This article mainly introduces the use of continue statements in Python examples, is the basic knowledge of Python introduction, the need for friends can refer to the

The Python continue statement returns the start of the while loop. The continue statement rejects the rest of the statements in the current iteration of the loop and moves the control back to the top of the loop (the start position).

Continue statements can be used in while and for loops.

Grammar

The syntax for the Python continue statement is as follows:

Continue

Flow chart:

Example

?

1 2 3 4 5 6 7 8 9 10 11 12 13-14 #!/usr/bin/python in ' python ': # a Example if letter = = ' h ': Continue print ' Current letter: ' var = # Second Example while var > 0:var = var-1 if var = 5:continue print ' Current variable value: ', var print "Good bye!"

When the above code is executed, the following results are produced:

?

1 2 3 4 5 6 7 8 9/ Letter:p current Letter:y current letter:t current letter:o current letter:n current variable value: 9 variable value:8 current variable value:7 current variable value:6 current variable value:4 current Vari Able value:3 current variable value:2 current variable value:1 current variable value:0 good bye!
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.