Programming Examples

Python recursive function to find the sum of digits


Write a recursive function in python to find the sum of digit of given number.

Solution:

def sod(num):
    if num<10:
        return num
    else:
        return num%10+sod(num//10)
n=int(input("Enter any Number : "))
sum=sod(n)
print("Sum of Digit ",sum)
Output/ Explanation:

Enter any Number : 342

Sum of Digit  9

Latest Current Affairs 2025 Online Exam Quiz for One day Exam Online Typing Test CCC Online Test Python Programming Tutorials Best Computer Training Institute in Prayagraj (Allahabad) Online MBA 2 years Online MCA Online BCA Best Website and Software Company in Allahabad