Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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}")
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #continue #python
ADD COMMENT
Topic
Name
8+4 =