键盘输入10个学生的成绩,输出各成绩和平均成绩
时间: 2023-05-18 18:04:47 浏览: 85
好的,以下是代码:
```python
scores = []
for i in range(10):
score = int(input("请输入第{}个学生的成绩:".format(i+1)))
scores.append(score)
total_score = sum(scores)
average_score = total_score / len(scores)
print("各成绩为:", scores)
print("平均成绩为:", average_score)
```
希望能对您有所帮助!
相关问题
键盘输入10个学生成绩,输出各成绩和平均成绩
好的,以下是代码实现:
```python
scores = []
for i in range(10):
score = float(input("请输入第{}个学生的成绩:".format(i+1)))
scores.append(score)
total = sum(scores)
average = total / len(scores)
print("各成绩为:", scores)
print("平均成绩为:", average)
```
希望能对您有所帮助!
从键盘输入10个学生的成绩,编程实现输出各成绩和平均成绩。
好的,这是一个计算问题,我可以为您解答。以下是实现方法的示例代码:
```python
scores = []
for i in range(10):
score = int(input("请输入第{}个学生的成绩:".format(i+1)))
scores.append(score)
total_score = sum(scores)
average_score = total_score / 10
print("各成绩:", scores)
print("平均成绩:{:.2f}".format(average_score))
```
您可以根据需要对输出做出相应的调整。
阅读全文