python求平均值函数
时间: 2023-10-13 15:06:32 浏览: 149
Python的平均值程序
以下是一个Python函数,用于计算一个数字列表的平均值:
```python
def mean(numbers):
return sum(numbers) / len(numbers)
```
使用示例:
```python
>>> numbers = [2, 3, 5, 7, 11]
>>> mean(numbers)
5.6
```
阅读全文
Python的平均值程序