第25465题 判断题
判断:删除给定Python代码中的continue不影响程序的执行效果

给定代码如下:

for i in range(100):
    if i % 2 == 0:
        print("偶数")
        continue
    else:
        print("奇数")
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析