Answers for "python add all digits in number"

3

python sum of digits

def sum_digits(n):
    s = 0
    while n:
        s += n % 10
        n //= 10
    return s
Posted by: Guest on August-30-2020
0

add all input digits python

# Program published on https://beginnersbook.com

# Python program to sum all the digits of an input number

num = int(input("Enter a Number: "))
result = 0
hold = num

# while loop to iterate through all the digits of input number
while num > 0:
    rem = num % 10
    result = result + rem
    num = int(num/10)

# displaying output
print("Sum of all digits of", hold, "is: ", result)
Posted by: Guest on August-05-2021

Code answers related to "python add all digits in number"

Python Answers by Framework

Browse Popular Code Answers by Language