序号 姓名 数学 语文 英语 总分 1 Tom 96 93.5 90 2 Merry 80 94.2 84 3 Cherry 89 62.7 88 4 Carlie 70 80.3 89 平均分
时间: 2024-01-07 15:03:21 浏览: 94
1.每个人总成绩和每一科的平均分.c
好的,根据你提供的信息,红色框所示的总分为:347.5,平均分为:69.5。你可以用以下代码实现读取数据、计算总分和平均分的操作:
```python
# 打开实验三.txt文件
with open('实验三.txt', 'r') as f:
# 读取每行数据并计算总分
total_score = 0
lines = f.readlines()
for line in lines[1:]:
data = line.strip().split()
total_score += float(data[3]) + float(data[4]) + float(data[5])
# 计算平均分
avg_score = total_score / (len(lines)-1) / 3
# 输出结果
print("总分为:", total_score)
print("平均分为:", avg_score)
```
请注意,上述代码仅供参考,具体实现需要根据你的实际情况进行调整。
阅读全文