0 votes
in Python by
Can you please help to clarify what does the continue do in Python Language?

1 Answer

0 votes
by

The continue is a jump statement in Python Language which moves the control to execute the next iteration in a loop leaving all the remaining instructions in the block unexecuted.

The continue statement is applicable for both the “while” and “for” loops.

Related questions

0 votes
asked Aug 29, 2020 in Python by Robindeniel
0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
...