how to do a digit sum in python code example
Example 1: for each digit in number python
for digit in str(n):
print(int(digit))
Example 2: python sum of digits
def sum_digits(n):
s = 0
while n:
s += n % 10
n //= 10
return s