summaryrefslogtreecommitdiff
path: root/progs/a962.py
blob: 42c3f53e4c556c6e2638bd7a7092e74d70cc71ab (plain)
1
2
3
4
5
6
def sum_average(number):
 total = 0
 for value in range(1, number + 1):
    total = total + value
 average = total / number
 return (total,average)