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

Enter any Number : 342

Sum of Digit  9

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad