python不定长参数计算上半年和下半年访客量平均值
时间: 2023-12-02 16:21:42 浏览: 87
求值_python_方差_中位数_平均值_
5星 · 资源好评率100%
同样可以使用Python的不定长参数来实现。不过这次我们需要接受两个不定长参数,分别表示上半年和下半年的访客量。下面是一个示例代码:
```python
def avg_visitor(*visitors):
half_len = len(visitors) // 2
first_half = visitors[:half_len]
second_half = visitors[half_len:]
def avg(lst):
total = sum(lst)
return total / len(lst)
avg_first = avg(first_half)
avg_second = avg(second_half)
return avg_first, avg_second
avg_first, avg_second = avg_visitor(1000, 1200, 1500, 800, 900, 1100, 1300, 1400, 1700, 1600, 1500, 1800)
print("上半年访客量平均值为:", avg_first)
print("下半年访客量平均值为:", avg_second)
```
在这个例子中,`avg_visitor`函数接受一个不定长参数`visitors`,我们首先通过`len(visitors)`来获取参数的数量,然后用`//`运算符来计算中间位置的索引。接着,我们使用切片操作`visitors[:half_len]`和`visitors[half_len:]`来将参数分成两个列表,分别表示上半年和下半年的访客量。
接下来,我们定义了一个内部函数`avg`,它接受一个列表参数,并返回该列表的平均值。我们分别调用`avg`函数来计算上半年和下半年的访客量平均值,并将结果作为一个元组返回。
最后,我们调用`avg_visitor`函数来计算上半年和下半年的访客量平均值,并将结果分别赋值给`avg_first`和`avg_second`变量。然后将它们打印出来。
需要注意的是,这个例子中的参数数量应该是偶数,否则最后一个参数会被忽略。
阅读全文