programming-examples/python/Misc/Python program to add the digits of a positive integer repeatedly until the result has a single digit.py
2019-11-15 12:59:38 +01:00

5 lines
129 B
Python

def add_digits(num):
return (num - 1) % 9 + 1 if num > 0 else 0
print(add_digits(48))
print(add_digits(59))