pythoin continue 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: continue in python

# Example of continue loop:

for number is range (0,5):
    # If the number is 4, skip the rest of the loop and continue from the top.
    if number == 4:
      continue
    
    print(f"Number is: {number}")