第26147题 单选题
以下程序使用枚举法查找数组最大值的索引,横线处应填入的代码是什么?

下面程序是用枚举法查找最大值的索引,横线处应该填写的是?

arr = 3, 7, 2, 9, 5
maxIndex = 0
for i in range(1, len(arr)):
    if ____________________:
        maxIndex = i
print(maxIndex)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析