7-5 比赛评分-元组
时间: 2023-07-05 19:08:51 浏览: 175
Long-Challenge-codechef
假设有 5 个评委对一场比赛进行评分,评分标准为满分 10 分。请编写一个 Python 程序,输入 5 个评委的得分,并计算出该选手的最终得分,要求使用元组实现。
代码如下:
```python
scores = ()
for i in range(5):
score = float(input("请输入第%d个评委的得分:" % (i+1)))
scores += (score,)
total_score = sum(scores)
final_score = (total_score - max(scores) - min(scores)) / 3
print("该选手的最终得分为:%.2f" % final_score)
```
运行结果示例:
```
请输入第1个评委的得分:9.5
请输入第2个评委的得分:9
请输入第3个评委的得分:8.5
请输入第4个评委的得分:9.2
请输入第5个评委的得分:8.8
该选手的最终得分为:9.07
```
阅读全文