Question: Write a program to find out sum of each digit in the given number using recursion logic. using the value 12345 as the input

Write a program to find out sum of each digit in the given number using recursion logic. using the value 12345 as the input . For example, if the number is 12345, then the sum should be 1+2+3+4+5 = 15. output "The sum of 12345-15 using recursion"
Step by Step Solution
There are 3 Steps involved in it
Python code def digitsumn if n 0 return 0 else return n 10 digitsumn 10 def main number 12345 totals... View full answer
Get step-by-step solutions from verified subject matter experts
