第27785题 单选题
运行以下Python代码片段后,最终输出的结果是?

以下是一段Python代码片段:

score = 82
level = ""
if score >= 9:
    level = "优秀"
elif score >= 8:
    level = "良好"
elif score >= 6:
    level = "及格"
else:
    level = "不及格"
print(level)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析