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.

Related questions

0 votes
asked Oct 11, 2021 in Python by rajeshsharma
+1 vote
asked Feb 15, 2021 in Python by SakshiSharma
...