Return the sum of all divisors of n, not including n. for i in range (i, n): if n % i == 0 and i < n: sum += i else:
確定! 回上一頁