Definition:
The continue statement is used inside a loop. When you use it in a loop, it skips the current step without executing it and moves to the next iteration of the loop. The loop continues running again and again until the condition becomes false. When the condition becomes false, the loop exits.
Syntax:
continue
Example:
for i in range(1, 8):
if i == 3:
continue
print(i)
Output:
