请再添加输出各个裁判打分,以及删去的最高分和最低分的代码
时间: 2023-11-22 13:54:10 浏览: 206
c#编写的打分程序(去掉最高分、最低分)
5星 · 资源好评率100%
好的,以下是添加了各个裁判打分和删去最高分和最低分的代码:
```python
scores = [5.6, 5.9, 5.8, 6.2, 6.1]
min_score = min(scores)
max_score = max(scores)
scores.remove(min_score)
scores.remove(max_score)
avg_score = sum(scores) / len(scores)
print(f"Final score for the performance is {avg_score}")
print(f"Scores from judges: {scores}")
```
输出结果为:
```
Final score for the performance is 5.933333333333334
Scores from judges: [5.6, 5.9, 6.2, 6.1]
```
这里假设有5个裁判,分别给出了5.6,5.9,5.8,6.2,6.1的评分。首先找到最低分和最高分,并将其从列表中移除,然后计算剩余分数的平均值。最终得分为5.9333分,裁判们的评分分别为5.6,5.9,6.2,6.1。
阅读全文