Using the computational knowledge in python it is possible to write a code that Write a recursive function called digit_count()
In Python, a function is a sequence of commands that performs some task and that has a name. Its main purpose is to help us organize programs into chunks that correspond to how we envision a solution to the problem.
def countDigits(n):
if n< 10:
return 1
else:
return 1 + countDigits(n / 10)
See more about python at brainly.com/question/13437928
#SPJ1