第18910题 单选题
为给定Python嵌套循环程序选择正确的空白处代码

请根据运行结果,为如下Python代码的空白处选择合适的选项:

num1=1
while num1 <= 5:
    num2=1
    while num2 <= 5:
        ___________
        num2 += 1
    print()
    num1 += 1

运行结果:

1 1 1 1 1
2 2 2 2 2
3 3 3 3 3
4 4 4 4 4
5 5 5 5 5
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析