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.

Related questions

+1 vote
asked Dec 14, 2019 in Agile by sheetalkhandelwal
0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
...