当前位置:Gxlcms > Python > python计算一个序列的平均值的方法

python计算一个序列的平均值的方法

时间:2021-07-01 10:21:17 帮助过:38人阅读

本文实例讲述了python计算一个序列的平均值的方法。分享给大家供大家参考。具体如下:

def average(seq, total=0.0): 
  num = 0 
  for item in seq: 
    total += item 
    num += 1 
  return total / num 

如果序列是数组或者元祖可以简单使用下面的代码

def average(seq): 
 return float(sum(seq)) / len(seq)

希望本文所述对大家的Python程序设计有所帮助。

人气教程排行