Example & Tutorial understanding programming in easy ways.

What is the difference between the continue and pass statement in python ?

The continue statement makes the loop to resume from the next iteration and the pass statement instructs to do nothing, and the remainder of the code executes as usual.

Read More →