Question: #We've started a recursive function below called #measure _ string that should take in one string parameter, #myStr , and returns its length. However, you
#We've started a recursive function below called
#measurestring that should take in one string parameter,
#myStr and returns its length. However, you may not use
#Python's builtin len function.
#
#Finish our code. We are missing the base case and the
#recursive call.
#
#HINT: Often when we have recursion involving strings, we
#want to break down the string to be in its simplest form.
#Think about how you could splice a string little by little.
#Then think about what your base case might be what is
#the most basic, minimal string you can have in python?
#
#Hint : How can you establish the base case has been
#reached without the len function?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
