预测完整程序的输出

👁️ 0 人浏览 💬 0 人评论 ❤️ 添加收藏

运行下面的 Python 3 程序,填写结果。

scores = [80, 90, 70]
total = sum(scores)
avg = total // len(scores)
count = 0
for s in scores:
    if s < avg:
        count = count + 1
print(count)
提交你的答案
请登录后提交答案。
去登录
代码编辑器
Ctrl + Enter 运行
本次输入:
输出:

                        
👩‍🏫
AI
💬 题目评论

全部评论