python统计不及格人数
时间: 2023-07-08 14:49:24 浏览: 679
成绩统计,及格人数,不及格人数
4星 · 用户满意度95%
假设有一个列表 `grades` 存储了每个学生的分数,可以使用以下代码来统计不及格人数:
```python
grades = [60, 70, 50, 80, 30, 90, 40]
fail_count = 0 # 不及格人数
for score in grades:
if score < 60:
fail_count += 1
print("不及格人数为:", fail_count)
```
输出结果为:
```
不及格人数为: 3
```
其中,`fail_count` 变量用于累计不及格人数,在循环中,如果某个学生的分数小于60分,则将不及格人数加1。最后输出累计的不及格人数即可。
阅读全文