python sum of digits
def sum_digits(n):
s = 0
while n:
s += n % 10
n //= 10
return s
python sum of digits
def sum_digits(n):
s = 0
while n:
s += n % 10
n //= 10
return s
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)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us