0 votes
in Python by
Can you please explain what is the difference between pass and continue in Python Language?

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.

...