编写一个计算平均分的函数,参数为列表/元组
时间: 2024-03-07 10:49:36 浏览: 68
好的,我可以编写一个计算平均分的Python函数,代码如下:
```python
def calculate_average(scores):
total = sum(scores)
average = total / len(scores)
return average
```
这个函数接收一个列表或元组 `scores` 作为参数,然后计算出平均值并返回。你可以通过调用这个函数来计算任何一组分数的平均值,例如:
```python
scores = [90, 85, 95, 87, 92]
average = calculate_average(scores)
print("平均分:", average)
```
输出结果为:
```
平均分: 89.8
```
希望能够帮到你!
相关问题
输入列表/元组,编写一个函数计算此列表/元组的平均分
好的,我可以帮你编写一个计算列表/元组平均分的函数。代码如下:
```python
def calculate_average(scores):
total = sum(scores)
average = total / len(scores)
return average
```
你可以将你的列表或元组作为参数传递给此函数,如下所示:
```python
scores = [80, 90, 85, 95, 70]
average_score = calculate_average(scores)
print("平均分为:", average_score)
```
输出结果为:
```
平均分为: 84.0
```
希望这可以回答你的问题!
编写一个计算平均分的函数,输入为列表/元组
好的,以下是一个 Python 代码示例,可以计算列表或元组中数值的平均值:
```python
def calculate_average(lst):
if len(lst) == 0:
return 0
else:
return sum(lst) / len(lst)
```
你可以将列表或元组作为参数传递给此函数,它将返回数值的平均值。如果列表或元组为空,则返回 0。
例如,如果要计算列表 [80, 90, 95, 87, 92] 中数值的平均值,你可以调用该函数并传递该列表作为参数:
```python
scores = [80, 90, 95, 87, 92]
average = calculate_average(scores)
print("The average score is:", average)
```
输出应该为:
```
The average score is: 88.8
```
阅读全文