Answers for "python program to find sum of digits of a number using while loop"

1

python program to find sum of digits of a number using while loop

#  Write a Program to display sum of all digits of a given
#  Number N by user

n = int(input('Enter a number : '))
sum=0

while(n>0):
    rem = n%10
    sum = sum+rem
    n = n//10
print('reversed no. is : ',int(sum))
Posted by: Guest on October-27-2021

Code answers related to "python program to find sum of digits of a number using while loop"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language