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.

Related questions

0 votes
asked Jun 12, 2020 in Python by Robindeniel
0 votes
asked Nov 15, 2020 in Python by rajeshsharma
...