Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (2.2k points)

Could someone tell me what Continue statement does in Python?

1 Answer

0 votes
by (3.9k points)

Continue is a loop control statement, that you would require to manipulate a loop to make a sudden exit, or break, or if you want to continue from the next iteration of the loop, etc. What Continue loop control statement does is that it helps you to re-iterate the loop, rather than breaking it or terminating it. When executed it would skip the steps in the loop and start the loop over again.

Wishing to learn Python and enhance your job prospects? Enroll in Intellipaat’s Python course which offers you industry-aligned projects and training to help you become a qualified and certified professional in Python. Join the course today!

If you need guidance in Python for doing projects, then I would recommend you to watch our YouTube video on Python Projects for Beginners.

Related questions

Browse Categories

...