You are viewing a single comment's thread. Return to all comments →
For Python:
class Calculator(AdvancedArithmetic): def divisorSum(self, n): self.n = n self.total = 0 for i in range(1, n+1): if n%i==0: self.total+=i return self.total
Seems like cookies are disabled on this browser, please enable them to open this website
Day 19: Interfaces
You are viewing a single comment's thread. Return to all comments →
For Python: