现有某班级Python考试成绩,请你帮老师做一下成绩统计,找出最高分、最低分,算出平均分,统计出不及格人数。
时间: 2024-03-15 15:44:32 浏览: 239
假设这个班级的Python考试成绩存储在一个列表中,可以使用以下代码进行统计:
```python
scores = [80, 65, 40, 70, 90, 55, 30, 75, 50, 85]
# 最高分
max_score = max(scores)
print("最高分为:", max_score)
# 最低分
min_score = min(scores)
print("最低分为:", min_score)
# 平均分
avg_score = sum(scores) / len(scores)
print("平均分为:", avg_score)
# 不及格人数
fail_count = len([score for score in scores if score < 60])
print("不及格人数为:", fail_count)
```
输出结果为:
```
最高分为: 90
最低分为: 30
平均分为: 63.0
不及格人数为: 4
```
阅读全文