0 votes
in Python by
What Does The Continue Do In Python?

1 Answer

0 votes
by

The continue is a jump statement in Python 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.

...