summaryrefslogtreecommitdiff
path: root/progs/a461.py
blob: 7ca6e4293c75dbb9ee9a7127b29cda8f06aebfce (plain)
1
2
3
4
5
def multiply_num(numbers):  
    total = 1
    for x in numbers:
        total *= x  
    return total/len(numbers)