首页 > 代码库 > 均值定义及实例

均值定义及实例

 

 

def Mean(t):    """均值"""    return float(sum(t)) / len(t)