有一个一维数组score,内放一个学生的六门课成绩,求该学生的总成绩。
时间: 2024-02-03 14:14:06 浏览: 54
用一维数组统计学生成绩_用一维数组统计学生成绩_源码
可以使用循环遍历数组,将每门课程的成绩加起来,得到总成绩。具体代码实现如下(假设数组名为score):
```python
total_score = 0
for i in range(len(score)):
total_score += score[i]
print("该学生的总成绩为:", total_score)
```
另外,也可以使用内置函数`sum()`来实现求和操作,代码如下:
```python
total_score = sum(score)
print("该学生的总成绩为:", total_score)
```
阅读全文