第26536题 单选题
Python实现整数因数统计的代码横线处应填入的是?

以下Python代码用于实现统计整数对应的因数,示例结果如 {12: [1, 2, 3, 4, 6, 12], 18: [1, 2, 3, 6, 9, 18]},请补全横线处的代码:

Factor = {}
for i in range(1, 100):
    for j in range(1, i+1):
        if i % j == 0:
            Factor[i] = ____________
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析