第10772题 判断题
判断给定Python代码中print(N)是否会执行0次或死循环

执行下面的Python代码,判断命题「语句print(N)将被执行0次或极多次(即死循环)」是否正确:

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