我只需要弄清楚如何在使用 0 作为循环退出的同时找到用户所有这些输入数字的平均值。
我需要弄清楚如何消除使用 0 作为平均值的一部分。示例:5, 0, 5 ,5... 消除 0 后的平均值为 5。
nA = 1
nSum = 0
print ('enter numbers to find the average')
print ('enter 0 to quit.')
while nA !=0:
nA = input ('gemmi a number:')
nSum+=nA
dAvg = nSum
print 'the total amount of numbers is' , nSum ,
print 'your average is' , dAvg ,
我该怎么做呢?