L = [75, 92, 59, 68, 99]
sum=0
for x in L:
sum=sum+x
ans = sum/len(L)
print(ans)
sun=0 改sun=0.0 就是到小数点后面一位
我用你的代码输出来是78.6