day1/exercise/aliquot.py
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 08 Oct 2009 20:22:15 +0530
changeset 72 1c1d6aaa2be3
parent 64 333092b68926
child 94 8c92864c184b
permissions -rw-r--r--
Added first cut of Day2 handout; Minor edits to sessions 2 and 3.

def aliquot(n):
    sum = 0
    for i in range(1, (n/2)+1):
        if n % i == 0:
            sum += i
    return sum

print aliquot(14)