0 votes
in Python by
What Is The Difference Between Pass And Continue In Python?

1 Answer

0 votes
by

The continue statement makes the loop to resume from the next iteration.

On the contrary, the pass statement instructs to do nothing, and the remainder of the code executes as usual.

...