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.
for i in range(1,11):
if i==5:
continue
print(i,end=" ")
Break Statement: The break statement is used to terminate the loop containing it. The control of the program will come out of this loop.
for i in range(10):
if i==4:
break
print(i,end=" ")
Pass statement: Pass statement in Python is a null operation that is used when the statement is required syntactically.