📜  如何使用 while 循环计算列表 python 中的平均值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:39.015000             🧑  作者: Mango

代码示例1
def avg(list):
    s = 0
    total = 0.0
    while(s < len(list)):
        total = total + list[s]
        s = s+1
    return total/len(list)
ans = avg([1, 2, 3, 4, 5])
print(ans)