in Python by (31.7k points)
What Does The Continue Do In Python?

1 Answer

0 votes
by (32.2k points)

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 (20.8k points)
0 votes
asked Nov 15, 2020 in Python by rajeshsharma (23.9k points)
0 votes
asked Aug 29, 2020 in Python by Robindeniel (20.8k points)
...