what does continue do inpython code example
Example 1: continue python
The continue statement in Python returns the control to the beginning of the
while loop. The continue statement rejects all the remaining statements
in the current iteration of the loop and moves the control back to the top of
the loop.
The continue statement can be used in both while and for loops.
Example 2: python for continue
>>> for num in range(2, 10):
... if num % 2 == 0:
... print("Found an even number", num)
... continue
... print("Found a number", num)
Found an even number 2
Found a number 3
Found an even number 4
Found a number 5
Found an even number 6
Found a number 7
Found an even number 8
Found a number 9