def print_even_numbers(): for i in range(100): if i % 2: continue print(i)