第25528题 单选题
下列求正整数数位和的Python代码横线处应填入的内容是?

下面的Python代码用于求正整数各位数之和(即数位和),约定高位不为0,如123则各位数之和为1+2+3结果为6。

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