Blog Details

img
Data Science

What is continue used for in Python

Spoke Right / 16 Nov, 2023

Python Continue:


Python Continue statement is used to skip the execution of current iteration in between the loop.

Continue statement breaks the continuity of the current iteration only, i.e, next iterations will not get affected because of Continue statement in current iteration.

Syntax:

loop/conditions statements:

statements

continue

Example:

//pythonexample.py

print "Extracting terms from word ALPHA_NUMERIC:"
for x in "ALPHA_NUMERIC":
 
   if x == "_":
       print "\n"
       continue
   print x

0 comments

Warning: PHP Startup: Unable to load dynamic library 'imagick.so' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so (/usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so: cannot open shared object file: No such file or directory), /usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so.so (/usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0