continue skips the rest of the current iteration and moves to the next: python for i in range(5): if i == 2: continue print(i) Output: , , , . When i is , continue skips the print and jumps to i = 3.
Use continue to skip items that don't meet criteria: python for num in numbers: if num < 0: continue print(num) # Only prints non-negative continue is cleaner than wrapping the whole body in an if statement.