1 2 3 4 5 6
def print_even_numbers(): for i in range(100): if i % 2 == 0: print(i) else: continue # [not-in-loop]