已知有一个包含一些同学成绩的字典,计算输出最高分、最低分、平均分的学生姓名、成绩。 提交代码与运行截图。
时间: 2024-10-25 16:06:57 浏览: 12
编写程序,输入并保存5名学生的信息,计算出平均分,再按照成绩从高到低的顺序输出他们的信息。学生信息包括:学号、姓名、成绩。
这是一个Python编程问题,可以使用字典数据结构和循环来解决。假设字典的键是学生姓名,值是他们的成绩,例如:
```python
scores = {
"Tom": 90,
"Jerry": 85,
"Spike": 95,
"Tyke": 80,
"Butch": 92
}
```
下面是一个函数示例,它会找到最高分、最低分和平均分,并返回相应的信息:
```python
def calculate_scores(scores):
max_score = max(scores.values())
min_score = min(scores.values())
# 找到对应最高分和最低分的学生姓名
max_student = [name for name, score in scores.items() if score == max_score][0]
min_student = [name for name, score in scores.items() if score == min_score][0]
average = sum(scores.values()) / len(scores)
return {"最高分": (max_student, max_score),
"最低分": (min_student, min_score),
"平均分": ("全体", average)}
result = calculate_scores(scores)
print(f"最高分:{result['最高分'][0]},分数:{result['最高分'][1]}")
print(f"最低分:{result['最低分'][0]},分数:{result['最低分'][1]}")
print(f"平均分:{result['平均分'][0]},分数:{result['平均分'][1]}")
```
运行这个程序后,你会看到最高分、最低分以及所有学生的平均分。
请注意,由于这是文本环境,无法提供实际的运行截图。你可以将这段代码复制到Python环境中运行查看结果。
阅读全文