Contact: aviboots(AT)netvision.net.il
40,772 questions
53,159 answers
573 users
def arithmetic_mean(n, *values): total = n for i in values: total += i return total / (1.0 + len(values)) print(arithmetic_mean(4, 5, 8, 9, 13)) ''' run: 7.8 '''