"""
continue
中止本轮循环
切入到下一轮循环
"""
# 需求 输出1-10的所有偶数
# 分析 遇到奇数就跳过
for i in range(1, 11):
if i % 2 == 1:
continue
print(i)