py在一行中输出一个成绩序列(至少五个),输出原始成绩序列,输出其中不及格的序列,并统计输出不及格人数
时间: 2023-11-22 09:53:51 浏览: 70
以下是代码实现:
```python
# 成绩序列
scores = [70, 90, 85, 60, 55, 76]
# 输出原始成绩序列
print("原始成绩序列:", end=" ")
for score in scores:
print(score, end=" ")
# 输出不及格的序列
print("\n不及格的成绩序列:", end=" ")
fail_scores = []
for score in scores:
if score < 60:
fail_scores.append(score)
print(score, end=" ")
# 统计不及格人数
print("\n不及格人数:", len(fail_scores))
```
输出结果:
```
原始成绩序列: 70 90 85 60 55 76
不及格的成绩序列: 55
不及格人数: 1
```
阅读全文