Continue Statement: When the program encounters the continue statement, it will skip all the statements present after the continue statement inside the loop, and proceed with the next iterations.
Break Statement: The break statement is used to terminate the loop containing it. The control of the program will come out of this loop.
Pass statement: Pass statement in Python is a null operation that is used when the statement is required syntactically.